summaryrefslogtreecommitdiff
path: root/ext/bz2
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-10-25 15:53:06 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-10-25 15:53:06 +0000
commite13d51cea376a7b013eb568fd982d99bc13e9f46 (patch)
tree2043e2f3a37465cef51c45646df0145b08fe15de /ext/bz2
parent2c5c8c161cc5009b5c2921299a3b0e7a2428bdce (diff)
downloadphp-git-e13d51cea376a7b013eb568fd982d99bc13e9f46.tar.gz
MFH: Fixed bug #34968 (bz2 extension fails on to build on some win32 setups).
Diffstat (limited to 'ext/bz2')
-rw-r--r--ext/bz2/bz2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bz2/bz2.c b/ext/bz2/bz2.c
index 81fed64246..f3939c5ea3 100644
--- a/ext/bz2/bz2.c
+++ b/ext/bz2/bz2.c
@@ -441,7 +441,7 @@ PHP_FUNCTION(bzdecompress)
char *source, *dest;
int source_len, error;
long small = 0;
-#if defined(PHP_WIN32) && _MSC_VER < 1300
+#if defined(PHP_WIN32)
unsigned __int64 size = 0;
#else
unsigned long long size = 0;