From: Russell Bryant Date: Sat, 8 Jan 2005 21:54:24 +0000 (+0000) Subject: fix typo (bug #3265) X-Git-Tag: 1.0.11.1~287 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6d0cc6c02cc2a6eecd4909bc608b8d1e4f79cb3;p=thirdparty%2Fasterisk.git fix typo (bug #3265) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4718 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c index 5f715b608b..6cf30db4ea 100755 --- a/res/res_musiconhold.c +++ b/res/res_musiconhold.c @@ -367,7 +367,7 @@ static int moh1_exec(struct ast_channel *chan, void *data) return -1; } if (ast_moh_start(chan, NULL)) { - ast_log(LOG_WARNING, "Unable to start music on hold (class '%s') on channel %s\n", (char *)data, chan->name); + ast_log(LOG_WARNING, "Unable to start music on hold for %d seconds on channel %s\n", atoi((char *)data), chan->name); return -1; } res = ast_safe_sleep(chan, atoi(data) * 1000);