mirror of
https://github.com/postgres/postgres.git
synced 2025-06-23 14:01:44 +03:00
Fix assignment operator thinko
Pointed out by Michael Paquier
This commit is contained in:
@ -884,7 +884,7 @@ select_loop(int maxFd, fd_set *workerset, bool *aborting)
|
||||
i = -1;
|
||||
|
||||
if (WSAGetLastError() == WSAEINTR)
|
||||
errno == EINTR;
|
||||
errno = EINTR;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user