From 0d9f71f913d365dd06836509c8e288d8987b5c03 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Fri, 30 Aug 2024 18:17:15 +0200 Subject: [PATCH] Fix warnings --- src/windows_emulator/syscalls.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/windows_emulator/syscalls.cpp b/src/windows_emulator/syscalls.cpp index 6ef7a704..edc454c6 100644 --- a/src/windows_emulator/syscalls.cpp +++ b/src/windows_emulator/syscalls.cpp @@ -372,10 +372,10 @@ namespace } NTSTATUS handle_NtMapViewOfSection(const syscall_context& c, uint64_t section_handle, uint64_t process_handle, - emulator_object base_address, ULONG_PTR zero_bits, SIZE_T commit_size, - const emulator_object section_offset, - const emulator_object view_size, SECTION_INHERIT inherit_disposition, - ULONG allocation_type, ULONG win32_protect) + emulator_object base_address, ULONG_PTR /*zero_bits*/, SIZE_T /*commit_size*/, + const emulator_object /*section_offset*/, + const emulator_object view_size, SECTION_INHERIT /*inherit_disposition*/, + ULONG /*allocation_type*/, ULONG /*win32_protect*/) { if (process_handle != ~0ULL) {