diff options
| author | 2017-04-15 10:01:21 +0000 | |
|---|---|---|
| committer | 2017-04-15 10:01:25 +0000 | |
| commit | 35edfc1fdc4d147e86633c249394ab07b0eca95e (patch) | |
| tree | 3587a73f684654aa83d4a6bb8f293b4618fb4c7c | |
| parent | e587591c5a5b2519bd9ecf389380d7325d75957c (diff) | |
| parent | 585ffd1cb3497eda590e4da48a8bec5726af1d3a (diff) | |
Merge "Update for removing mount arg to VintfObject::CheckCompatibility" into oc-dev
| -rw-r--r-- | core/jni/android_os_VintfObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/jni/android_os_VintfObject.cpp b/core/jni/android_os_VintfObject.cpp index 1883ecb9684a..9491a1ecdad3 100644 --- a/core/jni/android_os_VintfObject.cpp +++ b/core/jni/android_os_VintfObject.cpp @@ -59,7 +59,7 @@ static jint android_os_VintfObject_verify(JNIEnv *env, jclass clazz, jobjectArra cPackageInfo[i] = cString; env->ReleaseStringUTFChars(element, cString); } - int32_t status = VintfObject::CheckCompatibility(cPackageInfo, false /* mount */); + int32_t status = VintfObject::CheckCompatibility(cPackageInfo); return status; } |