From 6e277fc0c02db42cb3f455fdb9550ec16572ef46 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Tue, 23 Apr 2024 11:11:22 +0300 Subject: [PATCH] [RTL] actctx.c: Revert parameter change --- sdk/lib/rtl/actctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/lib/rtl/actctx.c b/sdk/lib/rtl/actctx.c index 5e87d9af6f0..257e1a21df3 100644 --- a/sdk/lib/rtl/actctx.c +++ b/sdk/lib/rtl/actctx.c @@ -2902,7 +2902,7 @@ static NTSTATUS open_nt_file( HANDLE *handle, UNICODE_STRING *name ) return NtOpenFile( handle, GENERIC_READ | SYNCHRONIZE, &attr, &io, FILE_SHARE_READ, FILE_SYNCHRONOUS_IO_ALERT ); } -static NTSTATUS get_module_filename( HMODULE module, UNICODE_STRING *str, USHORT extra_len ) +static NTSTATUS get_module_filename( HMODULE module, UNICODE_STRING *str, unsigned int extra_len ) { NTSTATUS status; ULONG_PTR magic;