Change 29883 by [EMAIL PROTECTED] on 2007/01/19 18:07:23
Fix breakage for -DDEBUGGING accidentally introduced with change 29882.
Affected files ...
... //depot/perl/sv.c#1362 edit
Differences ...
==== //depot/perl/sv.c#1362 (text) ====
Index: perl/sv.c
--- perl/sv.c#1361~29882~ 2007-01-19 09:36:10.000000000 -0800
+++ perl/sv.c 2007-01-19 10:07:23.000000000 -0800
@@ -697,7 +697,7 @@
newroot->next = aroot;
aroot = newroot;
PL_body_arenas = (void *) newroot;
- DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n",
(void*)*aroot));
+ DEBUG_m(PerlIO_printf(Perl_debug_log, "new arenaset %p\n", aroot));
}
/* ok, now have arena-set with at least 1 empty/available arena-desc */
End of Patch.