summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TSRM/TSRM.h4
-rw-r--r--Zend/zend_types.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/TSRM/TSRM.h b/TSRM/TSRM.h
index db24798be1..558f3d07f3 100644
--- a/TSRM/TSRM.h
+++ b/TSRM/TSRM.h
@@ -31,8 +31,8 @@
#endif
#ifdef _WIN64
-typedef unsigned __int64 tsrm_intptr_t;
-typedef __int64 tsrm_uintptr_t;
+typedef __int64 tsrm_intptr_t;
+typedef unsigned __int64 tsrm_uintptr_t;
#else
typedef long tsrm_intptr_t;
typedef unsigned long tsrm_uintptr_t;
diff --git a/Zend/zend_types.h b/Zend/zend_types.h
index dad2786009..150c945a32 100644
--- a/Zend/zend_types.h
+++ b/Zend/zend_types.h
@@ -29,8 +29,8 @@ typedef unsigned long zend_ulong;
typedef unsigned short zend_ushort;
#ifdef _WIN64
-typedef unsigned __int64 zend_intptr_t;
-typedef __int64 zend_uintptr_t;
+typedef __int64 zend_intptr_t;
+typedef unsigned __int64 zend_uintptr_t;
#else
typedef long zend_intptr_t;
typedef unsigned long zend_uintptr_t;