From 549aba0d2f70485a49940fbe1955a8906aec4826 Mon Sep 17 00:00:00 2001 From: Travis Cross Date: Wed, 9 Apr 2014 07:28:25 +0000 Subject: [PATCH] Remove variable assignment without effect We're breaking out of the loop here anyway, so setting done to true is useless. --- src/switch_ivr_play_say.c | 1 - 1 file changed, 1 deletion(-) 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; }