From: Sean Bright Date: Fri, 11 Jul 2008 18:32:26 +0000 (+0000) Subject: Missed one. Formatting only. X-Git-Tag: 1.6.2.0-beta1~1705 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a00263d9ce8d1dc6f5072203118197e0bf459e3;p=thirdparty%2Fasterisk.git Missed one. Formatting only. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@130167 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- 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; }