From: Kevin P. Fleming Date: Thu, 7 Aug 2008 16:29:08 +0000 (+0000) Subject: fix some format strings to actually compile without errors X-Git-Tag: 1.6.2.0-beta1~1483 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=992440acebdf650d26bbe62c2b81bfa2c2c3c706;p=thirdparty%2Fasterisk.git fix some format strings to actually compile without errors git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@136477 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c index ffaad38897..ede519ba4c 100644 --- a/apps/app_voicemail.c +++ b/apps/app_voicemail.c @@ -5736,8 +5736,8 @@ static int play_message(struct ast_channel *chan, struct ast_vm_user *vmu, struc } else { res = wait_file2(chan, vms, "vm-message"); /* "message" */ if (vms->curmsg && (vms->curmsg != vms->lastmsg)) { - ast_log(LOG_DEBUG, "curmsg: %s\n", vms->curmsg); - ast_log(LOG_DEBUG, "lagmsg: %s\n", vms->lastmsg); + ast_log(LOG_DEBUG, "curmsg: %d\n", vms->curmsg); + ast_log(LOG_DEBUG, "lagmsg: %d\n", vms->lastmsg); if (!res) { res = ast_say_number(chan, vms->curmsg + 1, AST_DIGIT_ANY, chan->language, "f"); }