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