summaryrefslogtreecommitdiff
path: root/apps/app_dictate.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2007-12-27 23:32:18 +0000
committerLuigi Rizzo <rizzo@icir.org>2007-12-27 23:32:18 +0000
commitc8f970936d17cbe3b3681f72e6e56b235dc66414 (patch)
tree742c524a29d7f00a88a22cf1ee4c5b1597903320 /apps/app_dictate.c
parent03f68a8a3a9441a78307ca8675aaa32b50098792 (diff)
remove more unnecessary casts for NULL.
main/say.c is a big offender in this respect. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@95073 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_dictate.c')
-rw-r--r--apps/app_dictate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_dictate.c b/apps/app_dictate.c
index abd0ec11d..58d61116a 100644
--- a/apps/app_dictate.c
+++ b/apps/app_dictate.c
@@ -170,7 +170,7 @@ static int dictate_exec(struct ast_channel *chan, void *data)
if (speed > 4) {
speed = 1;
}
- res = ast_say_number(chan, speed, AST_DIGIT_ANY, chan->language, (char *) NULL);
+ res = ast_say_number(chan, speed, AST_DIGIT_ANY, chan->language, NULL);
break;
case '7':
samples -= ffactor;