[svn:parrot] r49625 - branches/generational_gc/src/gc
mikehh at svn.parrot.org
mikehh at svn.parrot.org
Thu Oct 21 19:15:15 UTC 2010
Author: mikehh
Date: Thu Oct 21 19:15:15 2010
New Revision: 49625
URL: https://trac.parrot.org/parrot/changeset/49625
Log:
[generational_gc] fix codetest failure - line length
Modified:
branches/generational_gc/src/gc/gc_ms2.c
Modified: branches/generational_gc/src/gc/gc_ms2.c
==============================================================================
--- branches/generational_gc/src/gc/gc_ms2.c Thu Oct 21 18:48:19 2010 (r49624)
+++ branches/generational_gc/src/gc/gc_ms2.c Thu Oct 21 19:15:15 2010 (r49625)
@@ -2052,7 +2052,8 @@
fprintf(stderr, "buffers: %d\n", self->string_gc.memory_pool->total_allocated);
fprintf(stderr, "const buffers: %d\n", self->string_gc.constant_string_pool->total_allocated);
- fprintf(stderr, "attrs: %d\n", Parrot_gc_fixed_allocator_allocated_memory(interp, self->fixed_size_allocator));
+ fprintf(stderr, "attrs: %d\n", Parrot_gc_fixed_allocator_allocated_memory(interp,
+ self->fixed_size_allocator));
fprintf(stderr, "\n");
More information about the parrot-commits
mailing list