[svn:parrot] r43323 - branches/boehm_gc/src/gc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Wed Dec 30 16:33:22 UTC 2009
Author: mikehh
Date: Wed Dec 30 16:33:19 2009
New Revision: 43323
URL: https://trac.parrot.org/parrot/changeset/43323
Log:
fix codetest failure - at least one space between C keyword and subsequent open parenthesis
Modified:
branches/boehm_gc/src/gc/gc_boehm.c
Modified: branches/boehm_gc/src/gc/gc_boehm.c
==============================================================================
--- branches/boehm_gc/src/gc/gc_boehm.c Wed Dec 30 16:13:15 2009 (r43322)
+++ branches/boehm_gc/src/gc/gc_boehm.c Wed Dec 30 16:33:19 2009 (r43323)
@@ -160,7 +160,7 @@
{
ASSERT_ARGS(gc_boehm_get_free_object)
void *ret = GC_MALLOC(pool->object_size);
- if (pool->object_size == sizeof(PMC))
+ if (pool->object_size == sizeof (PMC))
GC_REGISTER_FINALIZER(ret, gc_boehm_finalize_cb, interp, NULL, NULL);
return ret;
}
More information about the parrot-commits
mailing list