Remove variable assignment without effect

We're breaking out of the loop here anyway, so setting done to true is
useless.
This commit is contained in:
Travis Cross 2014-04-09 07:28:25 +00:00
parent 90930d2958
commit 6f279e52b0

View File

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