mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:43:08 +00:00
[REACTOS] RtlAssert(): use "%lu" as LineNumber format.
This commit is contained in:
parent
1a89a3e731
commit
97d3b3ce33
3 changed files with 23 additions and 23 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue