Fix: Clang format

This commit is contained in:
Gursukh 2026-04-04 15:09:08 +01:00
parent faccccdb58
commit 309396c1fd

View File

@ -177,7 +177,7 @@ int NativeSocket::fstat(Libraries::Kernel::OrbisKernelStat* sb) {
sb->st_mode = 0000777u | 0140000u;
return 0;
#else
struct stat st {};
struct stat st{};
int result = ::fstat(sock, &st);
sb->st_mode = 0000777u | 0140000u;
sb->st_size = st.st_size;