summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@php.net>2007-04-17 06:26:32 +0000
committerDmitry Stogov <dmitry@php.net>2007-04-17 06:26:32 +0000
commitc60eee70463252a6aa03fdd93b5d0e282409ead9 (patch)
treeabd11d4c2ca8bf55e88cad15c44d2e999ac88330
parent8b245e5aafe1eca2a40fd640c68198fc583762af (diff)
downloadphp-git-c60eee70463252a6aa03fdd93b5d0e282409ead9.tar.gz
typo
-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;