Rename fields not compiling with gcc

This commit is contained in:
Marcin Mikołajczyk 2025-07-12 19:59:58 +01:00
parent b5e1940964
commit 26687060cd
2 changed files with 3 additions and 3 deletions

View File

@ -883,7 +883,7 @@ int PS4_SYSV_ABI sceNetEpollWait(OrbisNetId epollid, OrbisNetEpollEvent* events,
.data = it->second.data,
};
LOG_INFO(Lib_Net, "event[{}] = ( .events = {:#x}, .ident = {}, .data = {:#x} )", i,
events[i].events, events[i].ident, events[i].data.u64);
events[i].events, events[i].ident, events[i].data.data_u64);
}
return result;
}

View File

@ -141,9 +141,9 @@ struct OrbisNetMsghdr {
union OrbisNetEpollData {
void* ptr;
u32 u32;
u32 data_u32;
int fd;
u64 u64;
u64 data_u64;
};
struct OrbisNetEpollEvent {