Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera2015-01-24 14:15:56 +0000
committerAlvaro Herrera2015-01-24 14:15:56 +0000
commitf2789ab84ea0f731d97006c3ea91c656415c0fe5 (patch)
tree0b050bf0181de0f494fd90e1fde9ac3f0bd4f3fd
parentd1747571b63444615730ca17474e9e89974c48ad (diff)
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