summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/zlib/zlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index 788db98117..d109debea1 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -75,11 +75,11 @@
#include "ext/standard/php_smart_str.h"
-#define ADD_CL_HEADER(len) do { \
+#define ADD_CL_HEADER(xln) do { \
smart_str str = {0}; \
\
smart_str_appends(&str, "Content-Length: "); \
- smart_str_append_long(&str, len); \
+ smart_str_append_long(&str, xln); \
smart_str_0(&str); \
sapi_add_header(str.c, str.len, 0); \
} while(0)