From 63ead6763896d73cec6703fc45c842b4f5644e81 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Mon, 18 Mar 2024 17:43:32 +0000 Subject: [PATCH] Fix GH-13745: fix header inclusion in pdo_pgsql.c pdo/php_pdo_int.h is not part of the PDO's headers to install. --- ext/pdo_pgsql/pdo_pgsql.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo_pgsql/pdo_pgsql.c b/ext/pdo_pgsql/pdo_pgsql.c index a38f87896e62a..8be27adb4b704 100644 --- a/ext/pdo_pgsql/pdo_pgsql.c +++ b/ext/pdo_pgsql/pdo_pgsql.c @@ -22,7 +22,7 @@ #include "php_ini.h" #include "ext/standard/info.h" #include "pdo/php_pdo.h" -#include "pdo/php_pdo_int.h" +#include "pdo/php_pdo_error.h" #include "pdo/php_pdo_driver.h" #include "php_pdo_pgsql.h" #include "php_pdo_pgsql_int.h"