From: Travis Cross Date: Wed, 9 Apr 2014 07:28:25 +0000 (+0000) Subject: Remove variable assignment without effect X-Git-Tag: v1.5.12~210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=549aba0d2f70485a49940fbe1955a8906aec4826;p=thirdparty%2Ffreeswitch.git Remove variable assignment without effect We're breaking out of the loop here anyway, so setting done to true is useless. --- diff --git a/src/switch_ivr_play_say.c b/src/switch_ivr_play_say.c index 0e8cd24598..38c886ae67 100644 --- a/src/switch_ivr_play_say.c +++ b/src/switch_ivr_play_say.c @@ -324,7 +324,6 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro_event(switch_core_sessio } if (status != SWITCH_STATUS_SUCCESS) { - done = 1; break; }