mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[SDK] Don't just infinitely spam the DbgPrint in the bootloader (#6763)
This commit is contained in:
parent
dd6c1c8843
commit
ad9c634efa
1 changed files with 2 additions and 1 deletions
|
@ -380,7 +380,8 @@ extern ULONG CmlibTraceLevel;
|
|||
// Hack since big keys are not yet supported
|
||||
//
|
||||
#ifdef _BLDR_
|
||||
#define ASSERT_VALUE_BIG(h, s) DbgPrint("Big keys aren't supported!\n");
|
||||
#define ASSERT_VALUE_BIG(h, s) \
|
||||
do { if (CmpIsKeyValueBig(h,s)) DbgPrint("Big keys aren't supported!\n"); } while (0)
|
||||
#else
|
||||
#define ASSERT_VALUE_BIG(h, s) \
|
||||
ASSERTMSG("Big keys not supported!\n", !CmpIsKeyValueBig(h, s));
|
||||
|
|
Loading…
Reference in a new issue