From 6927ccf6ccaf260f0ff4fb2b0ddd5939bd02b101 Mon Sep 17 00:00:00 2001 From: Jacek Caban Date: Tue, 19 Nov 2024 19:57:50 +0100 Subject: [PATCH] ntdll: Use proper format string for ULONG type. --- 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; } }