[svn:parrot] r40727 - trunk/src/gc

NotFound at svn.parrot.org NotFound at svn.parrot.org
Sun Aug 23 01:32:53 UTC 2009


Author: NotFound
Date: Sun Aug 23 01:32:53 2009
New Revision: 40727
URL: https://trac.parrot.org/parrot/changeset/40727

Log:
[cage] fix c++ build

Modified:
   trunk/src/gc/mark_sweep.c

Modified: trunk/src/gc/mark_sweep.c
==============================================================================
--- trunk/src/gc/mark_sweep.c	Sun Aug 23 01:18:17 2009	(r40726)
+++ trunk/src/gc/mark_sweep.c	Sun Aug 23 01:32:53 2009	(r40727)
@@ -298,7 +298,7 @@
     /* Run through all the PObj header pools and mark */
     for (cur_arena = pool->last_Arena; cur_arena; cur_arena = cur_arena->prev) {
         const size_t objects_end = cur_arena->used;
-        b = cur_arena->start_objects;
+        b = (PObj *)cur_arena->start_objects;
         UINTVAL i;
 
         /* loop only while there are objects in the arena */


More information about the parrot-commits mailing list