mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:05:48 +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
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue