aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-11 18:32:26 +0000
committerseanbright <seanbright@f38db490-d61c-443f-a65b-d21fe96a405b>2008-07-11 18:32:26 +0000
commitcf687f06d112c362ca0d4e2c431833e6b5d7b970 (patch)
tree132dfcd6aa3ec549f7d9e1d83f2e0843de810fb5 /channels
parent0f2d60bb0ce7b971b1578b03771f1742547716e5 (diff)
Missed one. Formatting only.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@130167 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 245d75717..580160731 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;
}