diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-01-24 11:15:56 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2015-01-24 11:15:56 -0300 |
commit | f2789ab84ea0f731d97006c3ea91c656415c0fe5 (patch) | |
tree | 0b050bf0181de0f494fd90e1fde9ac3f0bd4f3fd | |
parent | d1747571b63444615730ca17474e9e89974c48ad (diff) | |
download | postgresql-f2789ab84ea0f731d97006c3ea91c656415c0fe5.tar.gz postgresql-f2789ab84ea0f731d97006c3ea91c656415c0fe5.zip |
Fix assignment operator thinko
Pointed out by Michael Paquier
-rw-r--r-- | src/bin/scripts/vacuumdb.c | 2 |
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 |