summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2020-10-19 16:00:31 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-10-19 16:00:31 +0000
commit35a2a4c3fdae3d6827ffbc3480365e2ac0ed081b (patch)
tree569e6e72e8c160bc6031e4097c1febf28c462275
parent33edcd4dbc9555062426451109ed71bbe6592af8 (diff)
parent2a24bd3071fb71eb646a6ee0ecf36cb709ad67ff (diff)
Merge "Fix trivial typo in the log message" am: 2a24bd3071
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1256653 Change-Id: I25b60e5225247a335cdc0dcd751de47374cdcfbb
-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;
}