From 51dafc60544939847e89219c4d92dc9398e0e704 Mon Sep 17 00:00:00 2001 From: David CARLIER Date: Mon, 18 Mar 2024 23:07:41 +0000 Subject: [PATCH] Fix GH-13745: fix header inclusion in pdo_pgsql.c (#13749) 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 a38f87896e6..8be27adb4b7 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"