[FFmpeg-cvslog] ffserver: fix printf argument type
Martin Ettl
git at videolan.org
Thu Oct 25 19:40:41 CEST 2012
ffmpeg | branch: master | Martin Ettl <ettl.martin78 at googlemail.com> | Thu Oct 25 16:34:32 2012 +0000| [cc72d52dc1edc2224ba1c1db777f8efa614f0cbb] | committer: Paul B Mahol
ffserver: fix printf argument type
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=cc72d52dc1edc2224ba1c1db777f8efa614f0cbb
---
ffserver.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ffserver.c b/ffserver.c
index c8f9cec..d985056 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -801,7 +801,7 @@ static void http_send_too_busy_reply(int fd)
"\r\n"
"<html><head><title>Too busy</title></head><body>\r\n"
"<p>The server is too busy to serve your request at this time.</p>\r\n"
- "<p>The number of current connections is %d, and this exceeds the limit of %d.</p>\r\n"
+ "<p>The number of current connections is %u, and this exceeds the limit of %u.</p>\r\n"
"</body></html>\r\n",
nb_connections, nb_max_connections);
av_assert0(len < sizeof(buffer));
More information about the ffmpeg-cvslog
mailing list