From b1393942b4250bef52b227462dba7ff6dc63dd90 Mon Sep 17 00:00:00 2001 From: Regina Obe Date: Sat, 13 Jun 2026 05:35:56 -0400 Subject: [PATCH] PG 19 support - Fix warnings - Add to CI --- .github/workflows/ci.yml | 1 + http.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 759b479..3291010 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: - { PGVER: 16 } - { PGVER: 17 } - { PGVER: 18 } + - { PGVER: 19 } steps: diff --git a/http.c b/http.c index 20805db..0689c2f 100644 --- a/http.c +++ b/http.c @@ -418,7 +418,7 @@ http_guc_init_opt(http_curlopt *opt) } static void -http_guc_init() +http_guc_init(void) { http_curlopt *opt = settable_curlopts; while (opt->curlopt) @@ -972,7 +972,7 @@ set_curlopt(CURL* handle, const http_curlopt *opt) /* Check/create the global CURL* handle */ static CURL * -http_get_handle() +http_get_handle(void) { CURL *handle = g_http_handle; http_curlopt *opt = settable_curlopts;