From 21b1adefbb4697267dfc786096faf79ea6bdca18 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Tue, 22 Mar 2005 23:27:29 +0000 Subject: fix a 32bit/64bit sprintf mixup that weasel pointed out svn:r3823 --- src/or/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/or/main.c b/src/or/main.c index 36917db838..e2176d4233 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -697,9 +697,9 @@ static void run_connection_housekeeping(int i, time_t now) { } else if ( now >= conn->timestamp_lastempty + options->KeepalivePeriod*10 && now >= conn->timestamp_lastwritten + options->KeepalivePeriod*10) { - log_fn(LOG_NOTICE,"Expiring stuck connection to %d (%s:%d). (%ul bytes to flush; %d seconds since last write)", + log_fn(LOG_NOTICE,"Expiring stuck connection to %d (%s:%d). (%d bytes to flush; %d seconds since last write)", i, conn->address, conn->port, - (unsigned long)buf_datalen(conn->outbuf), + (int)buf_datalen(conn->outbuf), (int)(now-conn->timestamp_lastwritten)); connection_mark_for_close(conn); } else { -- cgit v1.2.3-54-g00ecf