diff options
author | K.Takata <kentkt@csc.jp> | 2022-02-07 10:45:23 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-07 10:45:23 +0000 |
commit | b247e0622ef16b7819f5dadefd3e3f0a803b4021 (patch) | |
tree | 46fdc730e9b2dbc3438df20354eeaa2720d56828 /src/os_unix.c | |
parent | 6bf821e8abe1da24e5d0624f032d7eda745756e8 (diff) | |
download | vim-git-b247e0622ef16b7819f5dadefd3e3f0a803b4021.tar.gz |
patch 8.2.4316: __CYGWIN32__ is not defined on 64 bit systemsv8.2.4316
Problem: __CYGWIN32__ is not defined on 64 bit systems.
Solution: Update #ifdefs. (Ken Takata, closes #9709)
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index cbd8ba8bd..a6f3a6c48 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -6341,7 +6341,7 @@ select_eintr: FD_ZERO(&wfds); FD_ZERO(&efds); FD_SET(fd, &rfds); -# if !defined(__QNX__) && !defined(__CYGWIN32__) +# ifndef __QNX__ // For QNX select() always returns 1 if this is set. Why? FD_SET(fd, &efds); # endif |