Commit 4af92de6 authored by Stefano Sabatini's avatar Stefano Sabatini

Make the nb_max_connections and nb_connections int variables unsigned.

Originally committed as revision 15191 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent c4e02d70
......@@ -294,8 +294,8 @@ static int need_to_start_children;
/* maximum number of simultaneous HTTP connections */
static unsigned int nb_max_http_connections = 2000;
static int nb_max_connections = 5;
static int nb_connections;
static unsigned int nb_max_connections = 5;
static unsigned int nb_connections;
static uint64_t max_bandwidth = 1000;
static uint64_t current_bandwidth;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment