mirror of
https://github.com/reactos/reactos.git
synced 2025-06-11 04:47:22 +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
|
// Hack since big keys are not yet supported
|
||||||
//
|
//
|
||||||
#ifdef _BLDR_
|
#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
|
#else
|
||||||
#define ASSERT_VALUE_BIG(h, s) \
|
#define ASSERT_VALUE_BIG(h, s) \
|
||||||
ASSERTMSG("Big keys not supported!\n", !CmpIsKeyValueBig(h, s));
|
ASSERTMSG("Big keys not supported!\n", !CmpIsKeyValueBig(h, s));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue