Fix assignment operator thinko

Pointed out by Michael Paquier
pull/14/head
Alvaro Herrera 11 years ago
parent d1747571b6
commit f2789ab84e
  1. 2
      src/bin/scripts/vacuumdb.c

@ -884,7 +884,7 @@ select_loop(int maxFd, fd_set *workerset, bool *aborting)
i = -1; i = -1;
if (WSAGetLastError() == WSAEINTR) if (WSAGetLastError() == WSAEINTR)
errno == EINTR; errno = EINTR;
} }
#endif #endif

Loading…
Cancel
Save