projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d174757
)
Fix assignment operator thinko
author
Alvaro Herrera
<
[email protected]
>
Sat, 24 Jan 2015 14:15:56 +0000
(11:15 -0300)
committer
Alvaro Herrera
<
[email protected]
>
Sat, 24 Jan 2015 14:15:56 +0000
(11:15 -0300)
Pointed out by Michael Paquier
src/bin/scripts/vacuumdb.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/scripts/vacuumdb.c
b/src/bin/scripts/vacuumdb.c
index 506cdc7def27adbfa5a925b1becbfeca131eeefb..8e4e613ce15f9040472a1b8b3576cc8681987949 100644
(file)
--- a/
src/bin/scripts/vacuumdb.c
+++ b/
src/bin/scripts/vacuumdb.c
@@
-884,7
+884,7
@@
select_loop(int maxFd, fd_set *workerset, bool *aborting)
i = -1;
if (WSAGetLastError() == WSAEINTR)
- errno =
=
EINTR;
+ errno = EINTR;
}
#endif