mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(WiiU) Buildfix 2 (#14104)
This commit is contained in:
parent
e961f27786
commit
bc78e423ee
1 changed files with 4 additions and 0 deletions
|
@ -232,7 +232,9 @@ failure:
|
|||
switch (addr->ifa_addr->sa_family)
|
||||
{
|
||||
case AF_INET:
|
||||
#ifdef HAVE_INET6
|
||||
case AF_INET6:
|
||||
#endif
|
||||
interfaces++;
|
||||
break;
|
||||
default:
|
||||
|
@ -269,9 +271,11 @@ failure:
|
|||
case AF_INET:
|
||||
addrlen = sizeof(struct sockaddr_in);
|
||||
break;
|
||||
#ifdef HAVE_INET6
|
||||
case AF_INET6:
|
||||
addrlen = sizeof(struct sockaddr_in6);
|
||||
break;
|
||||
#endif
|
||||
default:
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue