From: Mike Jerris Date: Thu, 9 Feb 2017 23:48:03 +0000 (-0600) Subject: FS-10027: [build] fix build error on rpi2 X-Git-Tag: v1.8.0~848 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=60d4e874879db95c38bb2c0f7241e15cbb5bf717;p=thirdparty%2Ffreeswitch.git FS-10027: [build] fix build error on rpi2 --- diff --git a/src/switch_msrp.c b/src/switch_msrp.c index d3b1506aa5..4c386c825f 100644 --- a/src/switch_msrp.c +++ b/src/switch_msrp.c @@ -1666,7 +1666,7 @@ SWITCH_STANDARD_APP(msrp_send_file_function) /*TODO: send in chunk should ending in + but not $ after delimiter*/ switch_msrp_send(msrp_session, msrp_msg); - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "%ld bytes sent\n", len); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "%" SWITCH_SIZE_T_FMT " bytes sent\n", len); msrp_msg->byte_start += len; }