Moin,
On 08.08.2018 22:05, Serge Gautherie wrote:
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=97d3b3ce3349fa87d01ee…
commit 97d3b3ce3349fa87d01ee29d0d08ff2ca8618a7d
Author: Serge Gautherie <reactos-git_serge_171003(a)gautherie.fr>
AuthorDate: Thu Jun 21 05:05:50 2018 +0200
Commit: Hermès Bélusca-Maïto <hermes.belusca-maito(a)reactos.org>
CommitDate: Wed Aug 8 21:24:07 2018 +0200
[REACTOS] RtlAssert(): use "%lu" as LineNumber format.
---
...
- 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);
- }
-
- //DbgBreakPoint();
+ 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();
}
// DECLSPEC_NORETURN
here no %lu, but only %u?
Best regards,
Michael Fritscher