diff --git a/src/windows-emulator/syscalls.cpp b/src/windows-emulator/syscalls.cpp index b40623c6..e1a30fd3 100644 --- a/src/windows-emulator/syscalls.cpp +++ b/src/windows-emulator/syscalls.cpp @@ -3124,7 +3124,9 @@ namespace const auto local_filename = c.win_emu.file_sys.translate(filename).string(); - struct _stat64 file_stat {}; + struct _stat64 file_stat + { + }; if (_stat64(local_filename.c_str(), &file_stat) != 0) { return STATUS_OBJECT_NAME_NOT_FOUND;