summaryrefslogtreecommitdiff
path: root/ext/bcmath/bcmath.c
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2020-05-12 22:24:01 +0200
committerGeorge Peter Banyard <girgias@php.net>2020-05-16 15:31:11 +0200
commit2bb1cc4ba9861642800ae30deeabfa33bbb3835c (patch)
tree542f38186efeed5647145186c4010d3760270649 /ext/bcmath/bcmath.c
parentb91c2845cfd65b92490bad62d88b58ed33114a29 (diff)
downloadphp-git-2bb1cc4ba9861642800ae30deeabfa33bbb3835c.tar.gz
Fix [-Wundef] warning in BCMath extension
Diffstat (limited to 'ext/bcmath/bcmath.c')
-rw-r--r--ext/bcmath/bcmath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bcmath/bcmath.c b/ext/bcmath/bcmath.c
index b7afaf04d3..1b91fba72f 100644
--- a/ext/bcmath/bcmath.c
+++ b/ext/bcmath/bcmath.c
@@ -20,7 +20,7 @@
#include "php.h"
-#if HAVE_BCMATH
+#ifdef HAVE_BCMATH
#include "php_ini.h"
#include "zend_exceptions.h"