Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 71826706 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix trivial typo in the log message" am: 2a24bd30 am: 35a2a4c3 am:...

Merge "Fix trivial typo in the log message" am: 2a24bd30 am: 35a2a4c3 am: f1924939 am: 03b7fc8d

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1256653

Change-Id: Ia6b27c1552b9f409632df0cddf4993e2ba627b7b
parents 019f0c13 03b7fc8d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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;
}
}