Skip to content

Commit

Permalink
Fix a compiler warning about a %d mismatch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wayne Davison committed Dec 14, 2009
1 parent 45426a7 commit b9107ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion io.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit b9107ee

Please sign in to comment.