[svn:parrot] r47342 - branches/gc_massacre/src/gc

mikehh at svn.parrot.org mikehh at svn.parrot.org
Thu Jun 3 16:41:59 UTC 2010


Author: mikehh
Date: Thu Jun  3 16:41:59 2010
New Revision: 47342
URL: https://trac.parrot.org/parrot/changeset/47342

Log:
fix codetest failure - there should be at least one space between a C keyword and any subsequent open parenthesis

Modified:
   branches/gc_massacre/src/gc/list.h

Modified: branches/gc_massacre/src/gc/list.h
==============================================================================
--- branches/gc_massacre/src/gc/list.h	Thu Jun  3 16:39:15 2010	(r47341)
+++ branches/gc_massacre/src/gc/list.h	Thu Jun  3 16:41:59 2010	(r47342)
@@ -65,7 +65,7 @@
                                             \
     SET_LIST_OWNER(_list, _item)            \
     _list->count++;                         \
-} while(0);
+} while (0);
 
 #define LIST_REMOVE(l, i)                   \
 do {                                        \
@@ -89,7 +89,7 @@
         next->prev = prev;                  \
                                             \
     _list->count--;                         \
-} while(0)
+} while (0)
 
 
 /* HEADERIZER BEGIN: src/gc/list.c */


More information about the parrot-commits mailing list