From: Wayne Davison Date: Mon, 19 Oct 2009 15:06:21 +0000 (-0700) Subject: Silence some rprintf() size_t warnings. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/0a56ef128c7be9b91db00a7941375bd8f103ff53 Silence some rprintf() size_t warnings. --- diff --git a/io.c b/io.c index 610a802b..b0f0204e 100644 --- a/io.c +++ b/io.c @@ -471,8 +471,8 @@ static char *perform_io(size_t needed, int flags) if (!(iobuf.in.buf = realloc_array(iobuf.in.buf, char, needed))) out_of_memory("perform_io"); if (DEBUG_GTE(IO, 4)) { - rprintf(FINFO, "[%s] resized input buffer from %d to %d bytes.\n", - who_am_i(), iobuf.in.size, needed); + rprintf(FINFO, "[%s] resized input buffer from %ld to %ld bytes.\n", + who_am_i(), (long)iobuf.in.size, (long)needed); } iobuf.in.size = needed; } @@ -482,8 +482,8 @@ static char *perform_io(size_t needed, int flags) memmove(iobuf.in.buf, iobuf.in.buf + iobuf.in.pos, iobuf.in.len); if (DEBUG_GTE(IO, 4)) { rprintf(FINFO, - "[%s] moved %d bytes from %d to 0 in the input buffer (size=%d, needed=%d).\n", - who_am_i(), iobuf.in.len, iobuf.in.pos, iobuf.in.size, needed); + "[%s] moved %ld bytes from %ld to 0 in the input buffer (size=%ld, needed=%ld).\n", + who_am_i(), (long)iobuf.in.len, (long)iobuf.in.pos, (long)iobuf.in.size, (long)needed); } if (iobuf.raw_input_ends_before) iobuf.raw_input_ends_before -= iobuf.in.pos;