From b1960584cd14cbfb263627a121fe6fccb1fe9037 Mon Sep 17 00:00:00 2001 From: Elias Bachaalany Date: Tue, 11 Feb 2025 10:31:20 -0800 Subject: [PATCH] i give up on formatting... --- src/windows-emulator/syscalls.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;