aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-17 14:33:50 +0000
committermmichelson <mmichelson@f38db490-d61c-443f-a65b-d21fe96a405b>2009-04-17 14:33:50 +0000
commitd04a6de3c7a81df8fd5d7d2796fedd78a6fc3670 (patch)
tree71725236dc257612aa6a40d333bcd81cbb248111
parent824d244bb1c3467dc599e63e1ec67a21e3c91fe4 (diff)
Fix a spacing issue that I claimed I would when I committed this code.
Nothing major though. git-svn-id: http://svn.digium.com/svn/asterisk/trunk@188942 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--main/pbx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/pbx.c b/main/pbx.c
index 44b8ba8f8..f7ae5cd10 100644
--- a/main/pbx.c
+++ b/main/pbx.c
@@ -1813,7 +1813,7 @@ static void insert_in_next_chars_alt_char_list(struct match_char **parent_ptr, s
return;
}
- if ((*parent_ptr)->specificity > node->specificity){
+ if ((*parent_ptr)->specificity > node->specificity) {
/* insert at head */
node->alt_char = (*parent_ptr);
*parent_ptr = node;