summaryrefslogtreecommitdiff
path: root/src/or/rendcommon.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-08-20 05:15:08 +0000
committerRoger Dingledine <arma@torproject.org>2008-08-20 05:15:08 +0000
commitcc8b2247bfcecae2fe96d4133c8f403db06c93f7 (patch)
treeff0ff46067628288705a438d55ea5025804d65bd /src/or/rendcommon.c
parenta8035b5fc3efcf19b6e6bf4cef610f77ae063d80 (diff)
downloadtor-cc8b2247bfcecae2fe96d4133c8f403db06c93f7.tar.gz
tor-cc8b2247bfcecae2fe96d4133c8f403db06c93f7.zip
make r16598 compile on 64-bit too
svn:r16604
Diffstat (limited to 'src/or/rendcommon.c')
-rw-r--r--src/or/rendcommon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendcommon.c b/src/or/rendcommon.c
index a9a561b09c..0b97e2141e 100644
--- a/src/or/rendcommon.c
+++ b/src/or/rendcommon.c
@@ -514,7 +514,7 @@ rend_encode_v2_descriptors(smartlist_t *descs_out,
ipos_base64 = tor_malloc_zero(ipos_len * 2);
if (base64_encode(ipos_base64, ipos_len * 2, ipos, ipos_len)<0) {
log_warn(LD_REND, "Could not encode introduction point string to "
- "base64. length=%d", ipos_len);
+ "base64. length=%d", (int)ipos_len);
tor_free(ipos_base64);
tor_free(ipos);
return -1;