Skip to content

Commit 0b53c08

Browse files
committed
Fix compiler warning for commit 434dbf6.
Reported-by: Tom Lane <tgl@sss.pgh.pa.us>
1 parent 1cf4c56 commit 0b53c08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/interfaces/libpq/fe-auth-oauth-curl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,7 @@ set_timer(struct async_ctx *actx, long timeout)
13891389
EV_SET(&ev, 1, EVFILT_TIMER, EV_DELETE, 0, 0, 0);
13901390
if (kevent(actx->timerfd, &ev, 1, NULL, 0, NULL) < 0 && errno != ENOENT)
13911391
{
1392-
actx_error(actx, "deleting kqueue timer: %m", timeout);
1392+
actx_error(actx, "deleting kqueue timer: %m");
13931393
return false;
13941394
}
13951395

0 commit comments

Comments
 (0)