aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/main.c')
-rw-r--r--src/or/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c
index ad55d9c48..f5b1d3fc2 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -580,7 +580,7 @@ run_connection_housekeeping(int i, time_t now)
if (conn->purpose == DIR_PURPOSE_FETCH_SERVERDESC &&
buf_datalen(conn->inbuf)>=(24*1024)) {
log_fn(LOG_NOTICE, "Expired a wedged directory connection that had already downloaded %d bytes of descriptors. If this happens often, please file a bug report.",
- buf_datalen(conn->inbuf));
+ (int)buf_datalen(conn->inbuf));
}
connection_mark_for_close(conn);
return;