1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

add missing closing paranthesis

This commit is contained in:
Sascha Schumann
2001-05-11 19:41:11 +00:00
parent 3efa08aaa8
commit 996e9a7212
+1 -1
View File
@@ -265,7 +265,7 @@ typedef int (*zend_write_func_t)(const char *str, uint str_length);
#define MAX(a,b) (((a)>(b))?(a):(b))
#define MIN(a,b) (((a)<(b))?(a):(b))
#define ZEND_STRL(str) (str), (sizeof(str)-1)
#define ZEND_STRS(str) (str), (sizeof(str)
#define ZEND_STRS(str) (str), (sizeof(str))
#define ZEND_NORMALIZE_BOOL(n) \
((n) ? (((n)>0) ? 1 : -1) : 0)