Fix a potential compiler warning on 32-bit

This commit is contained in:
nick
2013-09-23 17:15:47 +01:00
parent 78fc65c515
commit 22f92c5df0

View File

@@ -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;