Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8e144043 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix getAvSyncTime() data type." into tm-dev

parents 92d4c632 968eed97
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1839,7 +1839,7 @@ jobject JTuner::getAvSyncTime(jint id) {
    if (mDemuxClient == nullptr) {
    if (mDemuxClient == nullptr) {
        return nullptr;
        return nullptr;
    }
    }
    long time = mDemuxClient->getAvSyncTime((int)id);
    int64_t time = mDemuxClient->getAvSyncTime((int)id);
    if (time >= 0) {
    if (time >= 0) {
        JNIEnv *env = AndroidRuntime::getJNIEnv();
        JNIEnv *env = AndroidRuntime::getJNIEnv();
        jclass longClazz = env->FindClass("java/lang/Long");
        jclass longClazz = env->FindClass("java/lang/Long");