From 22f92c5df0d711bf09261c0d248e7641c20f2e9f Mon Sep 17 00:00:00 2001 From: nick Date: Mon, 23 Sep 2013 17:15:47 +0100 Subject: [PATCH] Fix a potential compiler warning on 32-bit --- src/mirror.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirror.c b/src/mirror.c index 2ea6ca5..a572e5c 100644 --- a/src/mirror.c +++ b/src/mirror.c @@ -551,7 +551,7 @@ static void mirror_read_cb( struct ev_loop *loop, ev_io *w, int revents ) // We read some bytes, so reset the timer ev_timer_again( ctrl->ev_loop, &ctrl->timeout_watcher ); - debug( "Read %"PRIu64" bytes", count ); + debug( "Read %i bytes", count ); debug( "left was %"PRIu64", xfer->read was %"PRIu64, left, xfer->read ); xfer->read += count;