From 0e84aef4242ec032e57136ee96a4283b6b8d1b1d Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Sat, 13 May 2006 13:15:32 +0300 Subject: [PATCH] sv.c: printf %d wants int not size_t Message-Id: <200605130715.k4D7FWg3089581@kosh.hut.fi> Date: Sat, 13 May 2006 10:15:32 +0300 (EEST) p4raw-id: //depot/perl@28186 --- sv.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sv.c b/sv.c index 37c84f4..c7223c4 100644 --- a/sv.c +++ b/sv.c @@ -1066,8 +1066,9 @@ S_more_bodies (pTHX_ svtype sv_type) /* computed count doesnt reflect the 1st slot reservation */ DEBUG_m(PerlIO_printf(Perl_debug_log, "arena %p end %p arena-size %d type %d size %d ct %d\n", - start, end, bdp->arena_size, sv_type, body_size, - bdp->arena_size / body_size)); + start, end, + (int)bdp->arena_size, sv_type, (int)body_size, + (int)bdp->arena_size / (int)body_size)); *root = (void *)start; -- 2.7.4