projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cf4c56
)
Fix compiler warning for commit 434dbf69.
author
Thomas Munro
Wed, 19 Mar 2025 04:26:07 +0000
(17:26 +1300)
committer
Thomas Munro
Wed, 19 Mar 2025 04:26:16 +0000
(17:26 +1300)
Reported-by: Tom Lane
src/interfaces/libpq/fe-auth-oauth-curl.c
patch
|
blob
|
blame
|
history
diff --git
a/src/interfaces/libpq/fe-auth-oauth-curl.c
b/src/interfaces/libpq/fe-auth-oauth-curl.c
index 2d6d4b1a1234671da069fcfb8429157a0c44a2eb..3612819ae43aa86102dad930dc2a68e3cb016503 100644
(file)
--- 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;
}