From cc72d52dc1edc2224ba1c1db777f8efa614f0cbb Mon Sep 17 00:00:00 2001 From: Martin Ettl Date: Thu, 25 Oct 2012 16:34:32 +0000 Subject: ffserver: fix printf argument type --- ffserver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffserver.c') diff --git a/ffserver.c b/ffserver.c index c8f9cecf44..d985056ee0 100644 --- a/ffserver.c +++ b/ffserver.c @@ -801,7 +801,7 @@ static void http_send_too_busy_reply(int fd) "\r\n" "Too busy\r\n" "

The server is too busy to serve your request at this time.

\r\n" - "

The number of current connections is %d, and this exceeds the limit of %d.

\r\n" + "

The number of current connections is %u, and this exceeds the limit of %u.

\r\n" "\r\n", nb_connections, nb_max_connections); av_assert0(len < sizeof(buffer)); -- cgit v1.2.3