From 8929e5773cc3d3088d0b66ca15ec4d9ce9a06fef Mon Sep 17 00:00:00 2001 From: Stefan Ginsberg Date: Wed, 22 Oct 2008 11:16:52 +0000 Subject: [PATCH] - Fix some debug prints svn path=/trunk/; revision=36891 --- reactos/subsystems/win32/csrss/video.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/reactos/subsystems/win32/csrss/video.c b/reactos/subsystems/win32/csrss/video.c index 454c3f61581..fa9b65bb274 100644 --- a/reactos/subsystems/win32/csrss/video.c +++ b/reactos/subsystems/win32/csrss/video.c @@ -68,8 +68,8 @@ InitializeVideoAddressSpace(VOID) if (BaseAddress != (PVOID)0xa0000) { - DPRINT1("Couldn't map physical memory at the right address " - "(was %x)\n", BaseAddress); + DPRINT1("Couldn't map physical memory at the right address (was %x)\n", + BaseAddress); return 0; } @@ -91,8 +91,8 @@ InitializeVideoAddressSpace(VOID) } if (BaseAddress != (PVOID)0x0) { - DPRINT1("Failed to allocate virtual memory at right address " - "(was %x)\n", BaseAddress); + DPRINT1("Failed to allocate virtual memory at right address (was %x)\n", + BaseAddress); return 0; } @@ -100,7 +100,7 @@ InitializeVideoAddressSpace(VOID) Status = NtVdmControl(VdmInitialize, IVTAndBda); if (!NT_SUCCESS(Status)) { - DbgPrint("NtVdmControl failed (status %x)\n", Status); + DPRINT1("NtVdmControl failed (status %x)\n", Status); return 0; }