From: Jacek Caban jacek@codeweavers.com
--- dlls/ntdll/signal_arm64ec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/ntdll/signal_arm64ec.c b/dlls/ntdll/signal_arm64ec.c index f0687737f3f..04b13bfbc6d 100644 --- a/dlls/ntdll/signal_arm64ec.c +++ b/dlls/ntdll/signal_arm64ec.c @@ -786,7 +786,7 @@ static NTSTATUS WINAPI LdrpGetX64Information( ULONG type, void *output, void *ex *(UINT *)output = 0x27f; /* hard-coded x87 control word */ return STATUS_SUCCESS; default: - FIXME( "not implemented type %u\n", type ); + FIXME( "not implemented type %lu\n", type ); return STATUS_INVALID_PARAMETER; } } @@ -805,7 +805,7 @@ static NTSTATUS WINAPI LdrpSetX64Information( ULONG type, ULONG_PTR input, void return STATUS_SUCCESS; } default: - FIXME( "not implemented type %u\n", type ); + FIXME( "not implemented type %lu\n", type ); return STATUS_INVALID_PARAMETER; } }