summaryrefslogtreecommitdiff
path: root/libavutil/log.h
diff options
context:
space:
mode:
authorClément Bœsch <clement.boesch@smartjog.com>2011-06-15 11:24:00 +0200
committerMichael Niedermayer <michaelni@gmx.at>2011-06-21 21:41:28 +0200
commit4a34e54b0ecf342903d5ed112540fa832b62a514 (patch)
treef57fb9bbc7a0562ff6e748073b7ac13809d86940 /libavutil/log.h
parent5f654897e325349dacf2546674e0510bb72ecb50 (diff)
Fix zero-length gnu_printf format string warning.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/log.h')
-rw-r--r--libavutil/log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/log.h b/libavutil/log.h
index 149225dadf..53c8aa0f67 100644
--- a/libavutil/log.h
+++ b/libavutil/log.h
@@ -159,7 +159,7 @@ const char* av_default_item_name(void* ctx);
* "Last message repeated x times" messages below (f)printf messages with some
* bad luck.
* Also to receive the last, "last repeated" line if any, the user app must
- * call av_log(NULL, AV_LOG_QUIET, ""); at the end
+ * call av_log(NULL, AV_LOG_QUIET, "%s", ""); at the end
*/
#define AV_LOG_SKIP_REPEATED 1
void av_log_set_flags(int arg);