mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
ffserver: fix printf argument type
This commit is contained in:
parent
d8245c3bcd
commit
cc72d52dc1
@ -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));
|
||||
|
Loading…
Reference in New Issue
Block a user