summaryrefslogtreecommitdiff
path: root/test/986-native-method-bind/native_bind.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/986-native-method-bind/native_bind.cc')
-rw-r--r--test/986-native-method-bind/native_bind.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/986-native-method-bind/native_bind.cc b/test/986-native-method-bind/native_bind.cc
index 1afe4dbaa2..34e1f3539b 100644
--- a/test/986-native-method-bind/native_bind.cc
+++ b/test/986-native-method-bind/native_bind.cc
@@ -115,10 +115,10 @@ extern "C" JNIEXPORT void JNICALL Java_art_Test986_setNativeBindNotify(
extern "C" JNIEXPORT void JNICALL Java_art_Test986_rebindTransformClass(
JNIEnv* env, jclass klass ATTRIBUTE_UNUSED, jclass k) {
JNINativeMethod m[2];
- m[0].name= "sayHi";
+ m[0].name = "sayHi";
m[0].signature = "()V";
m[0].fnPtr = reinterpret_cast<void*>(Java_art_Test986_00024Transform_sayHi__);
- m[1].name= "sayHi2";
+ m[1].name = "sayHi2";
m[1].signature = "()V";
m[1].fnPtr = reinterpret_cast<void*>(Java_art_Test986_00024Transform_sayHi2);
env->RegisterNatives(k, m, 2);