diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-09-03 20:10:32 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-09-03 20:10:32 +0000 |
commit | 4af92de6f6e9111a178ae5d6b0a641cf5a1d1f40 (patch) | |
tree | b6128afe332a14369683f55737f920466450c0c3 /ffserver.c | |
parent | c4e02d702c934fc350fdc6413caeb74e027ac416 (diff) | |
download | ffmpeg-4af92de6f6e9111a178ae5d6b0a641cf5a1d1f40.tar.gz |
Make the nb_max_connections and nb_connections int variables unsigned.
Originally committed as revision 15191 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffserver.c')
-rw-r--r-- | ffserver.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ffserver.c b/ffserver.c index f7d00eabf3..f6898e5421 100644 --- a/ffserver.c +++ b/ffserver.c @@ -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; |