diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-11-01 17:28:49 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-11-01 17:28:49 +0000 |
commit | 80758473f833c110249f8ff4601c79bb4b19ec30 (patch) | |
tree | 96291b31fc979bb25b2c5017fae187da70094955 /src/or | |
parent | 1b009f345ba8c6500168d731fd8a416eb12c0c75 (diff) | |
download | tor-80758473f833c110249f8ff4601c79bb4b19ec30.tar tor-80758473f833c110249f8ff4601c79bb4b19ec30.tar.gz |
fix a signed/unsigned warning
svn:r5344
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 0e68b3ee1..a273902db 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -986,7 +986,7 @@ connection_bucket_read_limit(connection_t *conn) int connection_bucket_write_limit(connection_t *conn) { - int at_most; + unsigned int at_most; /* do a rudimentary round-robin so one circuit can't hog a connection */ if (connection_speaks_cells(conn)) { |