From 0b53c08677a6515786bde9d4471b42ef7289759e Mon Sep 17 00:00:00 2001 From: Thomas Munro Date: Wed, 19 Mar 2025 17:26:07 +1300 Subject: [PATCH] Fix compiler warning for commit 434dbf69. Reported-by: Tom Lane --- src/interfaces/libpq/fe-auth-oauth-curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces/libpq/fe-auth-oauth-curl.c b/src/interfaces/libpq/fe-auth-oauth-curl.c index 2d6d4b1a123..3612819ae43 100644 --- a/src/interfaces/libpq/fe-auth-oauth-curl.c +++ b/src/interfaces/libpq/fe-auth-oauth-curl.c @@ -1389,7 +1389,7 @@ set_timer(struct async_ctx *actx, long timeout) EV_SET(&ev, 1, EVFILT_TIMER, EV_DELETE, 0, 0, 0); if (kevent(actx->timerfd, &ev, 1, NULL, 0, NULL) < 0 && errno != ENOENT) { - actx_error(actx, "deleting kqueue timer: %m", timeout); + actx_error(actx, "deleting kqueue timer: %m"); return false; }