From 6a00263d9ce8d1dc6f5072203118197e0bf459e3 Mon Sep 17 00:00:00 2001 From: Sean Bright Date: Fri, 11 Jul 2008 18:32:26 +0000 Subject: [PATCH] Missed one. Formatting only. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@130167 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 245d757176..580160731a 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -2601,7 +2601,7 @@ static int find_sip_method(const char *msg) if (ast_strlen_zero(msg)) return 0; - for (i = 1; i < (ARRAY_LEN(sip_methods)) && !res; i++) { + for (i = 1; i < ARRAY_LEN(sip_methods) && !res; i++) { if (method_match(i, msg)) res = sip_methods[i].id; }