aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-07 16:29:08 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-07 16:29:08 +0000
commit394e8a3f53236a279259b9d040367fa4db34a2ee (patch)
treebf6dd2e345489461ed52badba1aa9916449563c2 /apps
parentf21f6ae82a790d6e0ad53bd7eef20842bd443218 (diff)
fix some format strings to actually compile without errors
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@136477 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_voicemail.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index ffaad3889..ede519ba4 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");
}