Merge "Fix trivial typo in the log message" am: 2a24bd3071 am: 35a2a4c3fd am: f192493995
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1256653 Change-Id: I528cea1f59dacd356c35c75a4c09ee748c59b4bc
This commit is contained in:
@@ -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,
|
static inline jfieldID GetFieldIDOrDie(JNIEnv* env, jclass clazz, const char* field_name,
|
||||||
const char* field_signature) {
|
const char* field_signature) {
|
||||||
jfieldID res = env->GetFieldID(clazz, field_name, 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);
|
field_signature);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user