From: Sascha Schumann Date: Fri, 11 May 2001 19:41:11 +0000 (+0000) Subject: add missing closing paranthesis X-Git-Tag: PRE_GRANULAR_GARBAGE_FIX~480 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=996e9a7212e358fc73f6061748654d86f563fe2e;p=php add missing closing paranthesis --- diff --git a/Zend/zend.h b/Zend/zend.h index d2e128872a..ac754aaa12 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -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)