From bcc8cd6eb68210ce631a8917bd8587441c933288 Mon Sep 17 00:00:00 2001 From: Elias Bachaalany Date: Tue, 11 Feb 2025 12:05:28 -0800 Subject: [PATCH] formatting --- src/windows-emulator/syscalls.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/windows-emulator/syscalls.cpp b/src/windows-emulator/syscalls.cpp index e1a30fd3..872f6ccb 100644 --- a/src/windows-emulator/syscalls.cpp +++ b/src/windows-emulator/syscalls.cpp @@ -3124,9 +3124,7 @@ 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;