Switch PADOFFSET back to U32 both because of binary backward
Jarkko Hietaniemi [Mon, 10 Sep 2001 22:35:57 +0000 (22:35 +0000)]
compatibility and because Arthur seems to have been fixing the
problems with naughty integer-pointer casting.

p4raw-id: //depot/perl@11982

op.h

diff --git a/op.h b/op.h
index 64ed3e5..85cd834 100644 (file)
--- 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