From 46f97f76a5f08cf6f3340f6a4db37f723bc7651c Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Fri, 3 Dec 2004 01:45:25 +0000 Subject: [PATCH] fix error message (bug 2897) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4381 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsp.c b/dsp.c index 784365c155..36401aad5a 100755 --- a/dsp.c +++ b/dsp.c @@ -1465,7 +1465,7 @@ struct ast_frame *ast_dsp_process(struct ast_channel *chan, struct ast_dsp *dsp, shortdata[x] = AST_ALAW(odata[x]); break; default: - ast_log(LOG_WARNING, "Inband DTMF is not supported on codec %s. Use RFC2833\n", ast_codec2str(af->subclass)); + ast_log(LOG_WARNING, "Inband DTMF is not supported on codec %s. Use RFC2833\n", ast_getformatname(af->subclass)); return af; } silence = __ast_dsp_silence(dsp, shortdata, len, NULL);