summaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-10-14 03:18:14 +0000
committerNick Mathewson <nickm@torproject.org>2004-10-14 03:18:14 +0000
commit1c9426d6e027d4a7789471691ad1703b05f60fad (patch)
tree0892be29c16011091754cb7fbfe1275bc172a42b /src/or/rendservice.c
parent3737566465f11bf2bd710239e38634590c4c4603 (diff)
downloadtor-1c9426d6e027d4a7789471691ad1703b05f60fad.tar.gz
tor-1c9426d6e027d4a7789471691ad1703b05f60fad.zip
Build without warnings on mac gcc 3.3
svn:r2487
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index 7ff2491022..2c86b4385f 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -422,7 +422,7 @@ rend_service_introduce(circuit_t *circuit, const char *request, size_t request_l
ptr = rp_nickname+nickname_field_len;
len -= nickname_field_len;
if (len != REND_COOKIE_LEN+DH_KEY_LEN) {
- log_fn(LOG_WARN, "Bad length %u for INTRODUCE2 cell.", len);
+ log_fn(LOG_WARN, "Bad length %u for INTRODUCE2 cell.", (int)len);
return -1;
}
r_cookie = ptr;