Skip to content

Commit dcdc177

Browse files
committed
Fix [-Wundef] warning in Filter extension
1 parent 8b62b8d commit dcdc177

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/exif/php_exif.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
+----------------------------------------------------------------------+
1616
*/
1717

18-
#if HAVE_EXIF
18+
#ifdef HAVE_EXIF
1919

2020
#include "php_version.h"
2121
#define PHP_EXIF_VERSION PHP_VERSION

ext/filter/logical_filters.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
#include "zend_multiply.h"
2525

26-
#if HAVE_ARPA_INET_H
26+
#ifdef HAVE_ARPA_INET_H
2727
# include <arpa/inet.h>
2828
#endif
2929

0 commit comments

Comments
 (0)