Missed one. Formatting only.
authorSean Bright <sean@malleable.com>
Fri, 11 Jul 2008 18:32:26 +0000 (18:32 +0000)
committerSean Bright <sean@malleable.com>
Fri, 11 Jul 2008 18:32:26 +0000 (18:32 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@130167 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 245d757..5801607 100644 (file)
@@ -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;
        }