diff options
author | Sverker Eriksson <[email protected]> | 2016-08-19 14:28:36 +0200 |
---|---|---|
committer | Sverker Eriksson <[email protected]> | 2016-08-19 14:28:36 +0200 |
commit | eb97d076f5364ccabbdf3ceacdea381e3f9a3444 (patch) | |
tree | b08119fdc0065319deaf08639817addec3d7c135 | |
parent | 3b7a6ffddc819bf305353a593904cea9e932e7dc (diff) | |
download | otp-eb97d076f5364ccabbdf3ceacdea381e3f9a3444.tar.gz otp-eb97d076f5364ccabbdf3ceacdea381e3f9a3444.tar.bz2 otp-eb97d076f5364ccabbdf3ceacdea381e3f9a3444.zip |
erl_interface: Fix faulty #if logic
-rw-r--r-- | lib/erl_interface/src/misc/ei_portio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/erl_interface/src/misc/ei_portio.h b/lib/erl_interface/src/misc/ei_portio.h index fbb61b0ccf..bded811a35 100644 --- a/lib/erl_interface/src/misc/ei_portio.h +++ b/lib/erl_interface/src/misc/ei_portio.h @@ -21,7 +21,7 @@ */ #ifndef _EI_PORTIO_H #define _EI_PORTIO_H -#if !defined(__WIN32__) || !defined(VXWORKS) +#if !defined(__WIN32__) && !defined(VXWORKS) #ifdef HAVE_WRITEV /* Declaration of struct iovec *iov should be visible in this scope. */ #include <sys/uio.h> |