Skip to content
Snippets Groups Projects
Commit 63cdb6e4 authored by Ganesh Ajjanagadde's avatar Ganesh Ajjanagadde Committed by Michael Niedermayer
Browse files

avutil/log: fix zero length gnu_printf format string warning

parent 3a8e4477
No related branches found
No related tags found
No related merge requests found
...@@ -343,7 +343,7 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl) ...@@ -343,7 +343,7 @@ void av_log_default_callback(void* ptr, int level, const char* fmt, va_list vl)
#if CONFIG_VALGRIND_BACKTRACE #if CONFIG_VALGRIND_BACKTRACE
if (level <= BACKTRACE_LOGLEVEL) if (level <= BACKTRACE_LOGLEVEL)
VALGRIND_PRINTF_BACKTRACE(""); VALGRIND_PRINTF_BACKTRACE("%s", "");
#endif #endif
end: end:
av_bprint_finalize(part+3, NULL); av_bprint_finalize(part+3, NULL);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment