mirror of
https://github.com/reactos/reactos.git
synced 2026-05-23 07:40:09 +08:00
[REACTOS] RtlAssert(): use "%lu" as LineNumber format.
This commit is contained in:
committed by
Hermès Bélusca-Maïto
parent
1a89a3e731
commit
97d3b3ce33
@@ -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);
|
||||
|
||||
@@ -36,7 +36,7 @@ RtlAssert(IN PVOID FailedAssertion,
|
||||
{
|
||||
/* Print the assertion */
|
||||
DbgPrint("\n*** Assertion failed: %s%s\n"
|
||||
"*** Source File: %s, line %ld\n\n",
|
||||
"*** Source File: %s, line %lu\n\n",
|
||||
Message != NULL ? Message : "",
|
||||
(PSTR)FailedAssertion,
|
||||
(PSTR)FileName,
|
||||
|
||||
@@ -131,28 +131,28 @@ DbgPrint(
|
||||
|
||||
VOID
|
||||
NTAPI
|
||||
RtlAssert(PVOID FailedAssertion,
|
||||
PVOID FileName,
|
||||
ULONG LineNumber,
|
||||
PCHAR Message)
|
||||
RtlAssert(IN PVOID FailedAssertion,
|
||||
IN PVOID FileName,
|
||||
IN ULONG LineNumber,
|
||||
IN PCHAR Message OPTIONAL)
|
||||
{
|
||||
if (NULL != Message)
|
||||
{
|
||||
DbgPrint("Assertion \'%s\' failed at %s line %d: %s\n",
|
||||
(PCHAR)FailedAssertion,
|
||||
(PCHAR)FileName,
|
||||
LineNumber,
|
||||
Message);
|
||||
}
|
||||
else
|
||||
{
|
||||
DbgPrint("Assertion \'%s\' failed at %s line %d\n",
|
||||
(PCHAR)FailedAssertion,
|
||||
(PCHAR)FileName,
|
||||
LineNumber);
|
||||
}
|
||||
if (Message != NULL)
|
||||
{
|
||||
DbgPrint("Assertion \'%s\' failed at %s line %u: %s\n",
|
||||
(PCHAR)FailedAssertion,
|
||||
(PCHAR)FileName,
|
||||
LineNumber,
|
||||
Message);
|
||||
}
|
||||
else
|
||||
{
|
||||
DbgPrint("Assertion \'%s\' failed at %s line %u\n",
|
||||
(PCHAR)FailedAssertion,
|
||||
(PCHAR)FileName,
|
||||
LineNumber);
|
||||
}
|
||||
|
||||
//DbgBreakPoint();
|
||||
//DbgBreakPoint();
|
||||
}
|
||||
|
||||
// DECLSPEC_NORETURN
|
||||
|
||||
Reference in New Issue
Block a user