summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2009-04-17 14:33:50 +0000
committerMark Michelson <mmichelson@digium.com>2009-04-17 14:33:50 +0000
commitf7292de7baa52345c14807f1bedcfab244c3e4cb (patch)
tree71725236dc257612aa6a40d333bcd81cbb248111 /main
parentb0347267b3570a59605f4e0dd1630b78bdb8e6c9 (diff)
Fix a spacing issue that I claimed I would when I committed this code.
Nothing major though. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@188942 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main')
-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;