From: Jarkko Hietaniemi Date: Sat, 8 Sep 2001 19:48:20 +0000 (+0000) Subject: PADOFFSET is used to cast pointers into integers, X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=90437c8d8811620716cc99372e39bb29a6b65ed6;p=p5sagit%2Fp5-mst-13.2.git PADOFFSET is used to cast pointers into integers, if pointers are 64 bits and U32 32 bits, bad things may happen, or at least warnings issued. p4raw-id: //depot/perl@11949 --- diff --git a/op.h b/op.h index 789ce58..3158395 100644 --- a/op.h +++ b/op.h @@ -23,7 +23,7 @@ * which may or may not check number of children). */ -typedef U32 PADOFFSET; +typedef UV PADOFFSET; #define NOT_IN_PAD ((PADOFFSET) -1) #ifdef DEBUGGING_OPS