| Index: base/android/jni_registrar.cc
|
| diff --git a/base/android/jni_registrar.cc b/base/android/jni_registrar.cc
|
| index 696924a09d03ef4a768f0ec06614c05bd5f8972f..fb399461a07f61bdeb3a2835f164677740c0fbc7 100644
|
| --- a/base/android/jni_registrar.cc
|
| +++ b/base/android/jni_registrar.cc
|
| @@ -15,7 +15,7 @@ bool RegisterNativeMethods(JNIEnv* env,
|
| size_t count) {
|
| const RegistrationMethod* end = method + count;
|
| while (method != end) {
|
| - if (!method->func(env) < 0) {
|
| + if (!method->func(env)) {
|
| DLOG(ERROR) << method->name << " failed registration!";
|
| return false;
|
| }
|
|
|