From: Mathieu Parent Date: Wed, 10 Mar 2010 14:37:14 +0000 (+0000) Subject: Skinny: solve compilation on amd64 X-Git-Tag: v1.0.6~188 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa92f47bd1395c6f50c20dc82a57b05d72eaaba2;p=thirdparty%2Ffreeswitch.git Skinny: solve compilation on amd64 git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16960 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/mod/endpoints/mod_skinny/skinny_protocol.h b/src/mod/endpoints/mod_skinny/skinny_protocol.h index fe847d49c3..8e9acb1a94 100644 --- a/src/mod/endpoints/mod_skinny/skinny_protocol.h +++ b/src/mod/endpoints/mod_skinny/skinny_protocol.h @@ -795,7 +795,7 @@ uint32_t skinny_str2device_reset_type(const char *str); /*****************************************************************************/ #define skinny_check_data_length(message, len) \ if (message->length < len+4) {\ - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Received Too Short Skinny Message (Expected %d, got %d).\n", len+4, message->length);\ + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Received Too Short Skinny Message (Expected %zu, got %d).\n", len+4, message->length);\ return SWITCH_STATUS_FALSE;\ }