From: Travis Cross Date: Wed, 9 Apr 2014 07:28:25 +0000 (+0000) Subject: Remove variable assignment without effect X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f279e52b071b15f59ff7fbc1cdb1fd189355cd7;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 79ebd92479..cb9b1fdef1 100644 --- a/src/switch_ivr_play_say.c +++ b/src/switch_ivr_play_say.c @@ -325,7 +325,6 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro_event(switch_core_sessio } if (status != SWITCH_STATUS_SUCCESS) { - done = 1; break; }