From: Jarkko Hietaniemi Date: Mon, 10 Sep 2001 22:35:57 +0000 (+0000) Subject: Switch PADOFFSET back to U32 both because of binary backward X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2aa0348e831318a7132271897c54636ff36e9c33;p=p5sagit%2Fp5-mst-13.2.git Switch PADOFFSET back to U32 both because of binary backward compatibility and because Arthur seems to have been fixing the problems with naughty integer-pointer casting. p4raw-id: //depot/perl@11982 --- diff --git a/op.h b/op.h index 64ed3e5..85cd834 100644 --- a/op.h +++ b/op.h @@ -23,7 +23,7 @@ * which may or may not check number of children). */ -typedef UV PADOFFSET; +typedef U32 PADOFFSET; #define NOT_IN_PAD ((PADOFFSET) -1) #ifdef DEBUGGING_OPS