Skip to content

Commit bf8743b

Browse files
committed
FirebaseAndroid: correct printf conversion specifier
Use `%lu` to ensure that the parameter is converted properly as per clang.
1 parent f506629 commit bf8743b

File tree

1 file changed

+1
-1
lines changed
  • Sources/FirebaseAndroid

1 file changed

+1
-1
lines changed

Sources/FirebaseAndroid/jni.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RegisterNativeMethods(JNIEnv *env)
4646
LOG_ERROR("JVM.RegisterNatives(%s): %u", kClassPath, result);
4747
return;
4848
}
49-
LOG_DEBUG("registered %u methods", N_ELEMENTS(kMethods));
49+
LOG_DEBUG("registered %lu methods", N_ELEMENTS(kMethods));
5050
}
5151

5252
FIREBASE_ANDROID_ABI

0 commit comments

Comments
 (0)