diff options
author | Sascha Schumann <sas@php.net> | 2003-08-29 07:34:47 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2003-08-29 07:34:47 +0000 |
commit | 5b09f342fe8fdba2b397803eb6df1b8b74133ba5 (patch) | |
tree | a192aa2fa661e080280fe88721e02c67b1d7a0e6 /ext/zlib | |
parent | dcfb7638bc5c7a88e9f74f36be823d3e60cab46f (diff) | |
download | php-git-5b09f342fe8fdba2b397803eb6df1b8b74133ba5.tar.gz |
improve format string
Diffstat (limited to 'ext/zlib')
-rw-r--r-- | ext/zlib/zlib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index e700270cb2..540fdbebb7 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -830,7 +830,7 @@ PHP_FUNCTION(gzencode) } if ((level < -1) || (level > 9)) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "compression level(%d) must be within -1..9", level); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "compression level(%ld) must be within -1..9", level); RETURN_FALSE; } |