summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.h
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2004-03-04 11:02:05 +0000
committerDerick Rethans <derick@php.net>2004-03-04 11:02:05 +0000
commit39ac9579f7ff602014237d66681911702436008d (patch)
treeef6655f83606c10a7521f478c67c60dad1eb063b /Zend/zend_operators.h
parentf88b28688802690116a6d426abf4b9c344fda6b4 (diff)
downloadphp-git-39ac9579f7ff602014237d66681911702436008d.tar.gz
- Fixed a 64bit issue (for zend_builtin_functions.c, module_number is an int).
- Change the MAX_LENGTH_OF_LONG constant to 20, as LONG_MAX is 20 characters. (Patches by Ard Biesheuven)
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r--Zend/zend_operators.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h
index d57214f018..6ec32b5dea 100644
--- a/Zend/zend_operators.h
+++ b/Zend/zend_operators.h
@@ -34,7 +34,7 @@
#include "ext/bcmath/libbcmath/src/bcmath.h"
#endif
-#define MAX_LENGTH_OF_LONG 18
+#define MAX_LENGTH_OF_LONG 20
#define MAX_LENGTH_OF_DOUBLE 32
BEGIN_EXTERN_C()