summaryrefslogtreecommitdiff
path: root/ext/zip/zip_stream.c
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2020-05-12 17:55:50 +0200
committerGeorge Peter Banyard <girgias@php.net>2020-05-18 00:37:18 +0200
commit5f0128e1e0e0deef350df659da69dddfc2cec0c7 (patch)
treee32574c15aae2e2214caf1bfe224b12140de6bc9 /ext/zip/zip_stream.c
parentbc9497695e8d3a9fbb0a3d806598bab91926b3aa (diff)
downloadphp-git-5f0128e1e0e0deef350df659da69dddfc2cec0c7.tar.gz
Fix [-Wundef] warning in ZIP extension
Diffstat (limited to 'ext/zip/zip_stream.c')
-rw-r--r--ext/zip/zip_stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/zip/zip_stream.c b/ext/zip/zip_stream.c
index 58fcb0322b..abdbffcd47 100644
--- a/ext/zip/zip_stream.c
+++ b/ext/zip/zip_stream.c
@@ -18,7 +18,7 @@
# include "config.h"
#endif
#include "php.h"
-#if HAVE_ZIP
+#ifdef HAVE_ZIP
#include "php_streams.h"
#include "ext/standard/file.h"