summaryrefslogtreecommitdiff
authorMartin Ettl <ettl.martin78@googlemail.com>2012-10-25 16:34:32 (GMT)
committer Paul B Mahol <onemda@gmail.com>2012-10-25 16:35:57 (GMT)
commitcc72d52dc1edc2224ba1c1db777f8efa614f0cbb (patch)
tree7025ec68e551fed6f7d9a110657d7b15cc978529
parentd8245c3bcdd162891825a52cf55e4e8173d85a18 (diff)
downloadffmpeg-cc72d52dc1edc2224ba1c1db777f8efa614f0cbb.zip
ffmpeg-cc72d52dc1edc2224ba1c1db777f8efa614f0cbb.tar.gz
ffmpeg-cc72d52dc1edc2224ba1c1db777f8efa614f0cbb.tar.bz2
ffserver: fix printf argument type
Diffstat
-rw-r--r--ffserver.c2
1 files changed, 1 insertions, 1 deletions
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));