From b9107ee61eec2e82515cb124676e0906bcdb86c8 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 13 Dec 2009 17:47:35 -0800 Subject: [PATCH] Fix a compiler warning about a %d mismatch. --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io.c b/io.c index 7f023fce..d142a1a6 100644 --- a/io.c +++ b/io.c @@ -1534,7 +1534,7 @@ static void read_a_msg(void) goto invalid_msg; iobuf.in_multiplexed = 1; if (DEBUG_GTE(EXIT, 3)) - rprintf(FINFO, "[%s] got MSG_ERROR_EXIT with %d bytes\n", who_am_i(), msg_bytes); + rprintf(FINFO, "[%s] got MSG_ERROR_EXIT with %ld bytes\n", who_am_i(), (long)msg_bytes); if (msg_bytes == 0) { if (!am_sender && !am_generator) { if (DEBUG_GTE(EXIT, 3)) { -- 2.34.1