[REACTOS] RtlAssert(): use "%lu" as LineNumber format.

This commit is contained in:
Serge Gautherie 2018-06-21 05:05:50 +02:00 committed by Hermès Bélusca-Maïto
parent 1a89a3e731
commit 97d3b3ce33
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
3 changed files with 23 additions and 23 deletions

View file

@ -488,7 +488,7 @@ RtlAssert(IN PVOID FailedAssertion,
{
if (Message)
{
DbgPrint("Assertion \'%s\' failed at %s line %u: %s\n",
DbgPrint("Assertion \'%s\' failed at %s line %lu: %s\n",
(PCHAR)FailedAssertion,
(PCHAR)FileName,
LineNumber,
@ -496,7 +496,7 @@ RtlAssert(IN PVOID FailedAssertion,
}
else
{
DbgPrint("Assertion \'%s\' failed at %s line %u\n",
DbgPrint("Assertion \'%s\' failed at %s line %lu\n",
(PCHAR)FailedAssertion,
(PCHAR)FileName,
LineNumber);