- Fix some debug prints

svn path=/trunk/; revision=36891
This commit is contained in:
Stefan Ginsberg 2008-10-22 11:16:52 +00:00
parent 0b9841ccba
commit 8929e5773c

View file

@ -68,8 +68,8 @@ InitializeVideoAddressSpace(VOID)
if (BaseAddress != (PVOID)0xa0000) if (BaseAddress != (PVOID)0xa0000)
{ {
DPRINT1("Couldn't map physical memory at the right address " DPRINT1("Couldn't map physical memory at the right address (was %x)\n",
"(was %x)\n", BaseAddress); BaseAddress);
return 0; return 0;
} }
@ -91,8 +91,8 @@ InitializeVideoAddressSpace(VOID)
} }
if (BaseAddress != (PVOID)0x0) if (BaseAddress != (PVOID)0x0)
{ {
DPRINT1("Failed to allocate virtual memory at right address " DPRINT1("Failed to allocate virtual memory at right address (was %x)\n",
"(was %x)\n", BaseAddress); BaseAddress);
return 0; return 0;
} }
@ -100,7 +100,7 @@ InitializeVideoAddressSpace(VOID)
Status = NtVdmControl(VdmInitialize, IVTAndBda); Status = NtVdmControl(VdmInitialize, IVTAndBda);
if (!NT_SUCCESS(Status)) if (!NT_SUCCESS(Status))
{ {
DbgPrint("NtVdmControl failed (status %x)\n", Status); DPRINT1("NtVdmControl failed (status %x)\n", Status);
return 0; return 0;
} }