[svn-commits] murf: branch murf/bug11210 r103707 - /team/murf/bug11210/utils/refcounter.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Feb 14 18:09:45 CST 2008


Author: murf
Date: Thu Feb 14 18:09:45 2008
New Revision: 103707

URL: http://svn.digium.com/view/asterisk?view=rev&rev=103707
Log:
Another little fix to refcounter, to obey formatting rules.

Modified:
    team/murf/bug11210/utils/refcounter.c

Modified: team/murf/bug11210/utils/refcounter.c
URL: http://svn.digium.com/view/asterisk/team/murf/bug11210/utils/refcounter.c?view=diff&rev=103707&r1=103706&r2=103707
==============================================================================
--- team/murf/bug11210/utils/refcounter.c (original)
+++ team/murf/bug11210/utils/refcounter.c Thu Feb 14 18:09:45 2008
@@ -184,10 +184,8 @@
 			if (curr_obj->destroy_count > 1 )
 				printf("Problem: Object %x destroyed more than once!\n", curr_obj->addr);
 			printf("Object %x history:\n", curr_obj->addr);
-			for(h=curr_obj->hist;h;h=h->next)
-			{
+			for(h=curr_obj->hist;h;h=h->next) {
 				printf("   %s", h->desc);
-				
 			}
 			printf("==============\n");
 		}




More information about the svn-commits mailing list