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
This commit is contained in:
Luigi Rizzo
2007-12-27 23:32:18 +00:00
parent 03f68a8a3a
commit c8f970936d
3 changed files with 9 additions and 9 deletions

View File

@@ -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;