From 1709cd0573a7dc1ffdb544ea673048cec2c5a0c8 Mon Sep 17 00:00:00 2001 From: yuqing Date: Tue, 7 Feb 2017 15:55:14 +0800 Subject: [PATCH] change ZVAL_STRINGL to ZEND_ZVAL_STRINGL --- php-fastcommon/fastcommon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php-fastcommon/fastcommon.c b/php-fastcommon/fastcommon.c index 92d2853..d065144 100644 --- a/php-fastcommon/fastcommon.c +++ b/php-fastcommon/fastcommon.c @@ -907,7 +907,7 @@ static LogContext *get_logger_context(const char *filename, const int time_preci if (s == NULL) { \ ZVAL_NULL(&z); \ } else { \ - ZVAL_STRINGL(&z, s, len, 0); \ + ZEND_ZVAL_STRINGL(&z, s, len, 0); \ } \ } while (0)