From f2789ab84ea0f731d97006c3ea91c656415c0fe5 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Sat, 24 Jan 2015 11:15:56 -0300 Subject: [PATCH] Fix assignment operator thinko Pointed out by Michael Paquier --- src/bin/scripts/vacuumdb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/scripts/vacuumdb.c b/src/bin/scripts/vacuumdb.c index 506cdc7def..8e4e613ce1 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