aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_dictate.c
diff options
context:
space:
mode:
authorrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-27 23:32:18 +0000
committerrizzo <rizzo@f38db490-d61c-443f-a65b-d21fe96a405b>2007-12-27 23:32:18 +0000
commit13b6df5c3f90adfa61af324013bc086da81b1580 (patch)
tree742c524a29d7f00a88a22cf1ee4c5b1597903320 /apps/app_dictate.c
parenteaa6eea1b706d3805a9631e7c0538afe05a6ea29 (diff)
remove more unnecessary casts for NULL.
main/say.c is a big offender in this respect. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@95073 f38db490-d61c-443f-a65b-d21fe96a405b
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;