ntdll: Use proper format string for ULONG type.

This commit is contained in:
Jacek Caban 2024-11-19 19:57:50 +01:00 committed by Alexandre Julliard
parent 34dce6335a
commit 6927ccf6cc
Notes: Alexandre Julliard 2024-11-19 23:24:15 +01:00
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/wine/merge_requests/6854

View file

@ -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;
}
}