Fix the typo in Tuner JNI of onScanMessageExt_1_1.onPriorityReported

Test: atest android.media.tv.tuner.cts
Bug: 181242574
Change-Id: Ie1348a0e2489160975d769c21429b971accfb2ea
This commit is contained in:
Amy Zhang
2021-02-25 16:46:38 -08:00
parent e280ab9e0d
commit a1649935f1

View File

@@ -1128,7 +1128,7 @@ void FrontendClientCallbackImpl::onScanMessageExt1_1(FrontendScanMessageTypeExt1
bool isHighPriority = message.isHighPriority();
env->CallVoidMethod(
frontend,
env->GetMethodID(clazz, "onPriorityReported", "(B)V"),
env->GetMethodID(clazz, "onPriorityReported", "(Z)V"),
isHighPriority);
break;
}