summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
Diffstat (limited to 'op.h')
-rw-r--r--op.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/op.h b/op.h
index fcb24a5f41..6a4d0db51b 100644
--- a/op.h
+++ b/op.h
@@ -23,7 +23,11 @@
* which may or may not check number of children).
*/
-typedef UV PADOFFSET;
+#if PTRSIZE == 8
+typedef U64TYPE PADOFFSET;
+#else
+typedef U32TYPE PADOFFSET;
+#endif
#define NOT_IN_PAD ((PADOFFSET) -1)
#ifdef DEBUGGING_OPS