diff options
author | Roger Dingledine <arma@torproject.org> | 2009-07-28 18:34:35 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2009-07-28 18:34:35 -0400 |
commit | 6249b0fd7757293876549c58c6cfe351d44a1d11 (patch) | |
tree | 4293f7ae3079674caca3542fddf4af39407a33d7 /src/or/or.h | |
parent | 69706f99e80aec9414e6a54e76346d4cf89f1a4c (diff) | |
download | tor-6249b0fd7757293876549c58c6cfe351d44a1d11.tar.gz tor-6249b0fd7757293876549c58c6cfe351d44a1d11.zip |
Fix a signed/unsigned compile warning in 0.2.1.19
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index 1dcff28d6d..319b3a9d10 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2926,8 +2926,8 @@ int options_need_geoip_info(or_options_t *options, const char **reason_out); int getinfo_helper_config(control_connection_t *conn, const char *question, char **answer); -int get_effective_bwrate(or_options_t *options); -int get_effective_bwburst(or_options_t *options); +uint32_t get_effective_bwrate(or_options_t *options); +uint32_t get_effective_bwburst(or_options_t *options); #ifdef CONFIG_PRIVATE /* Used only by config.c and test.c */ |