summaryrefslogtreecommitdiff
path: root/test/986-native-method-bind/native_bind.cc
diff options
context:
space:
mode:
author Igor Murashkin <iam@google.com> 2017-11-08 13:35:21 -0800
committer Igor Murashkin <iam@google.com> 2017-11-08 15:15:52 -0800
commit2ffb703bf431d74326c88266b4ddaf225eb3c6ad (patch)
tree0552c3c76a42b18f9e7460d501fb71a6dc2e7f33 /test/986-native-method-bind/native_bind.cc
parentc4b6f3116f15c8e4fdf2e4f604ababdee12d8923 (diff)
cpplint: Cleanup errors
Cleanup errors from upstream cpplint in preparation for moving art's cpplint fork to upstream tip-of-tree cpplint. Test: cd art && mm Bug: 68951293 Change-Id: I15faed4594cbcb8399850f8bdee39d42c0c5b956
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);