From 538c2dfa33f5aac1e4e5d09b9da40c54418be604 Mon Sep 17 00:00:00 2001 From: Sir Richard Date: Thu, 7 Oct 2010 13:52:42 +0000 Subject: [PATCH] [NTOS]: My attempt at making bugchecks a thing of the past has failed, someone has caught the typo. Bugchecks will now happen in ReactOS again instead of being ignored. Maybe you can "forget" to merge this one with the release branch? ;-) svn path=/trunk/; revision=49031 --- reactos/ntoskrnl/ke/bug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/ntoskrnl/ke/bug.c b/reactos/ntoskrnl/ke/bug.c index 8559d9d26ed..284f4252ccd 100644 --- a/reactos/ntoskrnl/ke/bug.c +++ b/reactos/ntoskrnl/ke/bug.c @@ -1431,8 +1431,8 @@ KeBugCheckEx(IN ULONG BugCheckCode, IN ULONG_PTR BugCheckParameter4) { /* Workaround for Windows Server 2003 Checked PCI Driver issue */ - if (!(BugCheckCode == PCI_BUS_DRIVER_INTERNAL) && - (BugCheckParameter1 == 0xDEAD0010)) + if (!((BugCheckCode == PCI_BUS_DRIVER_INTERNAL) && + (BugCheckParameter1 == 0xDEAD0010))) { /* Call the internal API */ KeBugCheckWithTf(BugCheckCode,