aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2015-01-24 11:15:56 -0300
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2015-01-24 11:15:56 -0300
commitf2789ab84ea0f731d97006c3ea91c656415c0fe5 (patch)
tree0b050bf0181de0f494fd90e1fde9ac3f0bd4f3fd
parentd1747571b63444615730ca17474e9e89974c48ad (diff)
downloadpostgresql-f2789ab84ea0f731d97006c3ea91c656415c0fe5.tar.gz
postgresql-f2789ab84ea0f731d97006c3ea91c656415c0fe5.zip
Fix assignment operator thinko
Pointed out by Michael Paquier
-rw-r--r--src/bin/scripts/vacuumdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/scripts/vacuumdb.c b/src/bin/scripts/vacuumdb.c
index 506cdc7def2..8e4e613ce15 100644
--- 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