From: Peter Holik Date: Wed, 6 Nov 2013 06:57:09 +0000 (+0100) Subject: Add missing braces to chan_lcr.c X-Git-Url: http://git.eversberg.eu/gitweb.cgi?p=lcr.git;a=commitdiff_plain;h=f3b94bf3a9599359805eaf20f3b036272c7af522 Add missing braces to chan_lcr.c Signed-off-by: Andreas Eversberg --- diff --git a/chan_lcr.c b/chan_lcr.c index a700866..a396013 100644 --- a/chan_lcr.c +++ b/chan_lcr.c @@ -3462,7 +3462,7 @@ static int lcr_config_exec(struct ast_channel *ast, void *data, char **argv) break; call = call->next; } - if (call) + if (call) { #ifdef LCR_FOR_ASTERISK apply_opt(call, (char *)data); @@ -3480,7 +3480,7 @@ static int lcr_config_exec(struct ast_channel *ast, void *data, char **argv) newparam.queue = call->tx_queue * 8; send_message(MESSAGE_DISABLE_DEJITTER, call->ref, &newparam); } - else + } else CERROR(NULL, ast, "lcr_config app not called by chan_lcr channel.\n"); ast_mutex_unlock(&chan_lock);