From: Michael Jerris Date: Fri, 12 Oct 2007 22:08:01 +0000 (+0000) Subject: fix build X-Git-Tag: v1.0-beta2~512 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf58dd44fe048088753cc46e27358e009322785a;p=thirdparty%2Ffreeswitch.git fix build git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5854 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/src/switch_ivr_menu.c b/src/switch_ivr_menu.c index 936fdb7b0e..4f9a5859bc 100644 --- a/src/switch_ivr_menu.c +++ b/src/switch_ivr_menu.c @@ -279,7 +279,7 @@ static switch_status_t play_or_say(switch_core_session_t *session, switch_ivr_me if (need) { menu->ptr += strlen(menu->buf); if (strlen(menu->buf) < need) { - switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "waiting for %u digits\n", need); + switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "waiting for %u digits\n", (uint32_t)need); status = switch_ivr_collect_digits_count(session, menu->ptr, menu->inlen - strlen(menu->buf), need, "#", &terminator, menu->timeout); } switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG, "digits '%s'\n", menu->buf);