From: Zeev Suraski Date: Mon, 22 Nov 1999 22:27:04 +0000 (+0000) Subject: Fix compile problem with enable-memory-limit X-Git-Tag: PRE_RETURN_REF_PATCH~302 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b264733bc10207bc6c5f54bf19bb106ebc6b75e7;p=php Fix compile problem with enable-memory-limit --- diff --git a/Zend/zend_alloc.c b/Zend/zend_alloc.c index 97cc8801b1..9fe4c8a061 100644 --- a/Zend/zend_alloc.c +++ b/Zend/zend_alloc.c @@ -46,7 +46,7 @@ static zend_alloc_globals alloc_globals; # if MEMORY_LIMIT # if ZEND_DEBUG -#define CHECK_MEMORY_LIMIT(s) _CHECK_MEMORY_LIMIT(s ZEND_FILE_LINE_RELAY_CC) +#define CHECK_MEMORY_LIMIT(s) _CHECK_MEMORY_LIMIT(s, __zend_filename, __zend_lineno) # else #define CHECK_MEMORY_LIMIT(s) _CHECK_MEMORY_LIMIT(s,NULL,0) # endif