diff options
author | George Peter Banyard <girgias@php.net> | 2020-05-20 15:41:30 +0200 |
---|---|---|
committer | George Peter Banyard <girgias@php.net> | 2020-05-20 16:29:53 +0200 |
commit | c85ded763222295f9d24f8550b9428259bc36e86 (patch) | |
tree | e8acb885c62576c717ecd5311dd06782038daf30 /ext/pdo_pgsql/pgsql_statement.c | |
parent | 50af36a8aae73d313e3fc72d76e8640296a7e04e (diff) | |
download | php-git-c85ded763222295f9d24f8550b9428259bc36e86.tar.gz |
Fix [-Wundef] warning in PDO PostgreSQL extension
Diffstat (limited to 'ext/pdo_pgsql/pgsql_statement.c')
-rw-r--r-- | ext/pdo_pgsql/pgsql_statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/pgsql_statement.c b/ext/pdo_pgsql/pgsql_statement.c index 1b728951f5..0edb3d7f8e 100644 --- a/ext/pdo_pgsql/pgsql_statement.c +++ b/ext/pdo_pgsql/pgsql_statement.c @@ -27,7 +27,7 @@ #include "pdo/php_pdo_driver.h" #include "php_pdo_pgsql.h" #include "php_pdo_pgsql_int.h" -#if HAVE_NETINET_IN_H +#ifdef HAVE_NETINET_IN_H #include <netinet/in.h> #endif |