From ff9b94e20f717bddcb9e10f3d8dfd35c27c3f030 Mon Sep 17 00:00:00 2001 From: momo5502 Date: Thu, 24 Oct 2024 19:54:37 +0200 Subject: [PATCH] Use regular return type notation --- src/windows-emulator/syscalls.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/windows-emulator/syscalls.cpp b/src/windows-emulator/syscalls.cpp index 4dea7a78..4cce1844 100644 --- a/src/windows-emulator/syscalls.cpp +++ b/src/windows-emulator/syscalls.cpp @@ -283,12 +283,12 @@ namespace return STATUS_SUCCESS; } - auto 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*/) -> NTSTATUS + 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*/) { if (process_handle != ~0ULL) {