Author: Whiteknight
Date: Sun Jul 20 16:35:38 2008
New Revision: 29636

Modified:
   branches/gsoc_pdd09/src/gc/gc_it.c

Log:
[gsoc_pdd09] small codingstd fix

Modified: branches/gsoc_pdd09/src/gc/gc_it.c
==============================================================================
--- branches/gsoc_pdd09/src/gc/gc_it.c  (original)
+++ branches/gsoc_pdd09/src/gc/gc_it.c  Sun Jul 20 16:35:38 2008
@@ -1342,7 +1342,7 @@
     Gc_it_hdr * ptr;
     Gc_it_data * const gc_priv_data = (Gc_it_data 
*)interp->arena_base->gc_private;
 
-    while((ptr = gc_priv_data->marked) != NULL) {
+    while ((ptr = gc_priv_data->marked) != NULL) {
         gc_priv_data->marked = ptr->next;
         ptr->next = NULL;
     }

Reply via email to