Fix debug messages which previously forced NDEBUG to be off

svn path=/trunk/; revision=15514
This commit is contained in:
Alex Ionescu
2005-05-26 13:45:48 +00:00
parent 1883e277ac
commit ff1ad3a698

View File

@@ -16,7 +16,7 @@
#include <apic.h>
#include <ioapic.h>
//#define NDEBUG
#define NDEBUG
#include <internal/debug.h>
/* GLOBALS ******************************************************************/
@@ -58,7 +58,7 @@ HaliMPIntSrcInfo(PMP_CONFIGURATION_INTSRC m)
IRQCount++;
}
static PCHAR
PCHAR
HaliMPFamily(ULONG Family,
ULONG Model)
{
@@ -275,9 +275,9 @@ HaliReadMPConfigTable(PMP_CONFIGURATION_TABLE Table)
{
PUCHAR pc = (PUCHAR)&Table->Signature;
DPRINT1("Bad MP configuration block signature: %c%c%c%c\n",
DPRINT1("Bad MP configuration block signature: %c%c%c%c\n",
pc[0], pc[1], pc[2], pc[3]);
KEBUGCHECK(0);
KEBUGCHECKEX(0, pc[0], pc[1], pc[2], pc[3]);
return FALSE;
}