diff options
author | George Peter Banyard <girgias@php.net> | 2020-05-12 23:29:04 +0200 |
---|---|---|
committer | George Peter Banyard <girgias@php.net> | 2020-05-16 15:31:18 +0200 |
commit | c19887496e9a3d3516368aa3cd8219e48e4fdca4 (patch) | |
tree | 313c19e9c73107e267c5ba1971a55eaf915df458 /ext/imap/php_imap.h | |
parent | 2cf24ff923d27443581743f836e49aa81947c694 (diff) | |
download | php-git-c19887496e9a3d3516368aa3cd8219e48e4fdca4.tar.gz |
Fix [-Wundef] warning in IMAP extension
Diffstat (limited to 'ext/imap/php_imap.h')
-rw-r--r-- | ext/imap/php_imap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.h b/ext/imap/php_imap.h index ae5dfe7b94..0ba2306ede 100644 --- a/ext/imap/php_imap.h +++ b/ext/imap/php_imap.h @@ -28,7 +28,7 @@ #ifndef PHP_IMAP_H #define PHP_IMAP_H -#if HAVE_IMAP +#ifdef HAVE_IMAP #if defined(HAVE_IMAP2000) || defined(HAVE_IMAP2001) |