Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- { PGVER: 16 }
- { PGVER: 17 }
- { PGVER: 18 }
- { PGVER: 19 }

steps:

Expand Down
4 changes: 2 additions & 2 deletions http.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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;
Expand Down
Loading