Fixed missing log message formatting argument on android.
This commit is contained in:
parent
be28b068a8
commit
69c0aa4b22
@ -74,7 +74,7 @@ static void log_recursion(const char* file, const char* fkt, int line)
|
||||
__android_log_print(ANDROID_LOG_FATAL, tag, "Check %s [%s:%d]", fkt, file, line);
|
||||
|
||||
for (i=0; i<used; i++)
|
||||
__android_log_print(ANDROID_LOG_FATAL, tag, "%d: %s", msg[i]);
|
||||
__android_log_print(ANDROID_LOG_FATAL, tag, "%d: %s", i, msg[i]);
|
||||
|
||||
#else
|
||||
fprintf(stderr, "[%s]: Recursion detected!\n", fkt);
|
||||
|
Loading…
Reference in New Issue
Block a user