mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
ntdll: Use proper format string for ULONG type.
This commit is contained in:
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
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue