diff --git a/ffserver.c b/ffserver.c index e3c3b420a2..34bfa89379 100644 --- a/ffserver.c +++ b/ffserver.c @@ -741,8 +741,10 @@ static void http_send_too_busy_reply(int fd) "Content-type: text/html\r\n" "\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 %u, and this exceeds the limit of %u.

\r\n" + "

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

\r\n" + "

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

\r\n" "\r\n", nb_connections, config.nb_max_connections); av_assert0(len < sizeof(buffer));