mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-19 00:00:09 +00:00
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user