mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-09 04:16:34 +00:00
BACKENDS: NETWORKING: Fix warning
This commit is contained in:
parent
7b35a1efb4
commit
cfc83b4a0a
@ -305,7 +305,6 @@ void LocalWebserver::resolveAddress(void *ipAddress) {
|
||||
|
||||
// if not - try platform-specific
|
||||
#ifdef POSIX
|
||||
struct ifaddrs *ifAddrStruct = NULL;
|
||||
void *tmpAddrPtr = NULL;
|
||||
|
||||
int fd = socket(AF_INET, SOCK_DGRAM, 0);
|
||||
@ -316,7 +315,7 @@ void LocalWebserver::resolveAddress(void *ipAddress) {
|
||||
char buffer[LSSDP_BUFFER_LEN] = {};
|
||||
struct ifconf ifc;
|
||||
ifc.ifc_len = sizeof(buffer);
|
||||
ifc.ifc_buf = (caddr_t) buffer;
|
||||
ifc.ifc_buf = (caddr_t) buffer;
|
||||
|
||||
if (ioctl(fd, SIOCGIFCONF, &ifc) < 0) {
|
||||
warning("LocalWebserver: ioctl SIOCGIFCONF failed: %s (%d)", strerror(errno), errno);
|
||||
|
Loading…
x
Reference in New Issue
Block a user