Mercurial > hg > octave-lojdl > gnulib-hg
diff lib/w32sock.h @ 16326:067aa8df247a
accept4, fcntl, socket modules: Avoid warnings on x86_64 mingw64.
* lib/accept4.c (accept4): Use intptr_t to convert handle pointer to
an integer.
* lib/fcntl.c (dupfd): Likewise.
* lib/w32sock.h (SOCKET_TO_FD): Likewise.
author | Marc-André Lureau <marcandre.lureau@redhat.com> |
---|---|
date | Sat, 28 Jan 2012 13:23:31 +0100 (2012-01-28) |
parents | 8250f2777afc |
children | a712776b11ce |
line wrap: on
line diff
--- a/lib/w32sock.h +++ b/lib/w32sock.h @@ -29,7 +29,7 @@ #include "msvc-nothrow.h" #define FD_TO_SOCKET(fd) ((SOCKET) _get_osfhandle ((fd))) -#define SOCKET_TO_FD(fh) (_open_osfhandle ((long) (fh), O_RDWR | O_BINARY)) +#define SOCKET_TO_FD(fh) (_open_osfhandle ((intptr_t) (fh), O_RDWR | O_BINARY)) static inline void set_winsock_errno (void)