]> granicus.if.org Git - php/commitdiff
add missing closing paranthesis
authorSascha Schumann <sas@php.net>
Fri, 11 May 2001 19:41:11 +0000 (19:41 +0000)
committerSascha Schumann <sas@php.net>
Fri, 11 May 2001 19:41:11 +0000 (19:41 +0000)
Zend/zend.h

index d2e128872afefd08f5dd84124dd82452d3731bb7..ac754aaa122906a5e6e7e531b2ec29747032eb47 100644 (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)