From: Jarkko Hietaniemi Date: Sat, 13 May 2006 10:15:32 +0000 (+0300) Subject: sv.c: printf %d wants int not size_t X-Git-Tag: accepted/trunk/20130322.191538~17652 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e84aef4242ec032e57136ee96a4283b6b8d1b1d;p=platform%2Fupstream%2Fperl.git 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 --- 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;