summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author TreeHugger Robot <treehugger-gerrit@google.com> 2017-04-15 10:01:21 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2017-04-15 10:01:25 +0000
commit35edfc1fdc4d147e86633c249394ab07b0eca95e (patch)
tree3587a73f684654aa83d4a6bb8f293b4618fb4c7c
parente587591c5a5b2519bd9ecf389380d7325d75957c (diff)
parent585ffd1cb3497eda590e4da48a8bec5726af1d3a (diff)
Merge "Update for removing mount arg to VintfObject::CheckCompatibility" into oc-dev
-rw-r--r--core/jni/android_os_VintfObject.cpp2
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;
}