diff options
author | Nick Mathewson <nickm@torproject.org> | 2003-12-15 21:35:52 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2003-12-15 21:35:52 +0000 |
commit | 4885e904906dcc967e3597301c17ad95bb77b5e0 (patch) | |
tree | 2991699afdd3ab55fdcd1c50965f4c0443786070 /src/or/router.c | |
parent | a5aa80cc419d6831ce339496a1c644f2347496a2 (diff) | |
download | tor-4885e904906dcc967e3597301c17ad95bb77b5e0.tar.gz tor-4885e904906dcc967e3597301c17ad95bb77b5e0.zip |
Make compile warning-free on cygwin
svn:r936
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index a8626a604d..9ae4ebd146 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -421,7 +421,7 @@ int router_dump_router_to_string(char *s, int maxlen, routerinfo_t *router, router->or_port, router->socks_port, router->dir_port, - router->bandwidth, + (int) router->bandwidth, platform, published, onion_pkey, link_pkey, identity_pkey); |