summaryrefslogtreecommitdiff
path: root/ext/pdo_dblib/php_pdo_dblib.h
diff options
context:
space:
mode:
authorGeorge Peter Banyard <girgias@php.net>2020-05-20 15:40:57 +0200
committerGeorge Peter Banyard <girgias@php.net>2020-05-20 16:29:52 +0200
commit1c598cf6a8086afd42171b1771dac94d53debd13 (patch)
tree98b96ddacdc77f4ab571eac2cf2e489da511e64e /ext/pdo_dblib/php_pdo_dblib.h
parentf0794c77193e5c5e7f03d30b5b4910606bcd0ea1 (diff)
downloadphp-git-1c598cf6a8086afd42171b1771dac94d53debd13.tar.gz
Fix [-Wundef] warning in PDO DBLib extension
Diffstat (limited to 'ext/pdo_dblib/php_pdo_dblib.h')
-rw-r--r--ext/pdo_dblib/php_pdo_dblib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_dblib/php_pdo_dblib.h b/ext/pdo_dblib/php_pdo_dblib.h
index af4e845624..0fe9a42298 100644
--- a/ext/pdo_dblib/php_pdo_dblib.h
+++ b/ext/pdo_dblib/php_pdo_dblib.h
@@ -18,7 +18,7 @@
#ifndef PHP_PDO_DBLIB_H
#define PHP_PDO_DBLIB_H
-#if PDO_DBLIB_IS_MSSQL
+#ifdef PDO_DBLIB_IS_MSSQL
extern zend_module_entry pdo_mssql_module_entry;
#define phpext_pdo_mssql_ptr &pdo_mssql_module_entry
#else