summaryrefslogtreecommitdiff
path: root/libavformat/aviobuf.c
diff options
context:
space:
mode:
authorReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2015-12-23 15:05:32 -0800
committerReynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>2015-12-27 00:09:16 -0800
commitbaf4c489e5f468a208596cd128a6f1c49e6ae35b (patch)
tree8641bb724740272146b9ddadffc474dfd18705d7 /libavformat/aviobuf.c
parentb25ac3c999b0b486018279283667129bbad06d08 (diff)
avio: add detail to avio_printf() size warning
Previous "currently size is limited" didn't give away much in terms of useful info. Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r--libavformat/aviobuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
index c2aa8dc96e..57cbf8311d 100644
--- a/libavformat/aviobuf.c
+++ b/libavformat/aviobuf.c
@@ -968,7 +968,7 @@ int avio_closep(AVIOContext **s)
int avio_printf(AVIOContext *s, const char *fmt, ...)
{
va_list ap;
- char buf[4096];
+ char buf[4096]; /* update doc entry in avio.h if changed */
int ret;
va_start(ap, fmt);