[asterisk-commits] mmichelson: trunk r188942 - /trunk/main/pbx.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri Apr 17 09:33:53 CDT 2009


Author: mmichelson
Date: Fri Apr 17 09:33:50 2009
New Revision: 188942

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=188942
Log:
Fix a spacing issue that I claimed I would when I committed this code.

Nothing major though.


Modified:
    trunk/main/pbx.c

Modified: trunk/main/pbx.c
URL: http://svn.digium.com/svn-view/asterisk/trunk/main/pbx.c?view=diff&rev=188942&r1=188941&r2=188942
==============================================================================
--- trunk/main/pbx.c (original)
+++ trunk/main/pbx.c Fri Apr 17 09:33:50 2009
@@ -1813,7 +1813,7 @@
 		return;
 	}
 
-	if ((*parent_ptr)->specificity > node->specificity){
+	if ((*parent_ptr)->specificity > node->specificity) {
 		/* insert at head */
 		node->alt_char = (*parent_ptr);
 		*parent_ptr = node;




More information about the asterisk-commits mailing list