[svn:parrot] r40569 - branches/pmc_sans_unionval/src/gc

whiteknight at svn.parrot.org whiteknight at svn.parrot.org
Sat Aug 15 14:24:26 UTC 2009


Author: whiteknight
Date: Sat Aug 15 14:24:25 2009
New Revision: 40569
URL: https://trac.parrot.org/parrot/changeset/40569

Log:
[pmc_sans_unionval] fix some whitespace after a C keyword

Modified:
   branches/pmc_sans_unionval/src/gc/api.c

Modified: branches/pmc_sans_unionval/src/gc/api.c
==============================================================================
--- branches/pmc_sans_unionval/src/gc/api.c	Sat Aug 15 14:22:42 2009	(r40568)
+++ branches/pmc_sans_unionval/src/gc/api.c	Sat Aug 15 14:24:25 2009	(r40569)
@@ -945,12 +945,9 @@
     /* XXX this won't work with, e.g., gc_gms */
     free_list_end = dest->free_list;
 
-    if(free_list_end == NULL)
-    {
+    if (free_list_end == NULL)
         dest->free_list = source->free_list;
-    }
-    else
-    {
+    else {
         while (free_list_end->next_ptr)
             free_list_end = free_list_end->next_ptr;
 


More information about the parrot-commits mailing list