Patrick Gaskin 2021-05-30 15:24:26 -04:00 committed by PulseAudio Marge Bot
parent 9d27317873
commit ac8e786026
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@
#include <config.h> #include <config.h>
#endif #endif
#if !defined(HAVE_ARPA_INET_H) && defined(OS_IS_WIN32) && (_WIN32_WINNT <= 0x0600) #if !defined(HAVE_ARPA_INET_H) && defined(OS_IS_WIN32) && (_WIN32_WINNT < 0x0600)
#include <errno.h> #include <errno.h>

View file

@ -12,7 +12,7 @@
#include <pulsecore/socket.h> #include <pulsecore/socket.h>
#if (_WIN32_WINNT <= 0x0600) #if (_WIN32_WINNT < 0x0600)
const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt); const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt);