summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Treehugger Robot <treehugger-gerrit@google.com> 2020-10-19 15:41:24 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2020-10-19 15:41:24 +0000
commit2a24bd3071fb71eb646a6ee0ecf36cb709ad67ff (patch)
tree99a6e2d32efd1b8712ee35a4bca00f7457dad462
parentc90a797b8ee78cdd91f99c57b65616beddae032e (diff)
parent3be6cc03a3912c0cd66a58550452a78a13f310bf (diff)
Merge "Fix trivial typo in the log message"
-rw-r--r--core/jni/core_jni_helpers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/jni/core_jni_helpers.h b/core/jni/core_jni_helpers.h
index ad8aeb20ab3e..563c1c416ca7 100644
--- a/core/jni/core_jni_helpers.h
+++ b/core/jni/core_jni_helpers.h
@@ -47,7 +47,7 @@ static inline jclass FindClassOrDie(JNIEnv* env, const char* class_name) {
static inline jfieldID GetFieldIDOrDie(JNIEnv* env, jclass clazz, const char* field_name,
const char* field_signature) {
jfieldID res = env->GetFieldID(clazz, field_name, field_signature);
- LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find static field %s with signature %s", field_name,
+ LOG_ALWAYS_FATAL_IF(res == NULL, "Unable to find field %s with signature %s", field_name,
field_signature);
return res;
}