Prevent crash

This commit is contained in:
M66B 2022-04-13 17:49:29 +02:00
parent fc4ced56f4
commit c36104f030
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
void log_android(int prio, const char *fmt, ...) {
if (prio >= ANDROID_LOG_DEBUG) {
char line[1024];
char line[4096];
va_list argptr;
va_start(argptr, fmt);
vsprintf(line, fmt, argptr);