Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ionescu007/SimpleVisor.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/shv.c
diff options
context:
space:
mode:
authorionescu007 <aionescu+git@gmail.com>2016-08-29 06:09:30 +0300
committerionescu007 <aionescu+git@gmail.com>2016-08-29 06:09:30 +0300
commit0a7f4aed4db944cb8b8d3c468a303538120f53aa (patch)
treee9ba2a0f94a3f68bdd3836f5acf611bdd57d59cd /shv.c
parent3b0428646368e7a38312d7e11a64a7e0c9e960aa (diff)
Fix regression
Diffstat (limited to 'shv.c')
-rw-r--r--shv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shv.c b/shv.c
index d6fa1dd..e5db492 100644
--- a/shv.c
+++ b/shv.c
@@ -100,8 +100,8 @@ ShvInitialize (
//
if (dpcContext.InitMask != ((1ULL << cpuCount) - 1))
{
- DbgPrintEx(77, 0, "The SHV failed to initialize. CPU Mask: %llx\n",
- dpcContext.InitMask);
+ DbgPrintEx(77, 0, "The SHV failed to initialize (0x%lX) CPU Mask: %llx\n",
+ dpcContext.FailureStatus, dpcContext.InitMask);
NT_ASSERT(dpcContext.FailureStatus != STATUS_SUCCESS);
ExFreePoolWithTag(ShvGlobalData, 'ShvA');
return dpcContext.FailureStatus;