mirror of
https://github.com/reactos/reactos.git
synced 2024-11-24 03:53:31 +08:00
[SDK] Don't just infinitely spam the DbgPrint in the bootloader (#6763)
This commit is contained in:
parent
dd6c1c8843
commit
ad9c634efa
@ -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 New Issue
Block a user