From 2fa730f845b05e9bd688916ef5f6febadb2a9351 Mon Sep 17 00:00:00 2001 From: Aleksey Bragin Date: Sun, 23 Dec 2007 19:20:10 +0000 Subject: [PATCH] - Fix typos and debug messages. svn path=/trunk/; revision=31417 --- reactos/subsystems/win32/win32k/ldr/loader.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/subsystems/win32/win32k/ldr/loader.c b/reactos/subsystems/win32/win32k/ldr/loader.c index 2f9a1beee9b..a06af9d774c 100644 --- a/reactos/subsystems/win32/win32k/ldr/loader.c +++ b/reactos/subsystems/win32/win32k/ldr/loader.c @@ -225,7 +225,7 @@ EngLoadImage (LPWSTR DriverName) /* the driver was not loaded before, so let's do that */ Status = ZwSetSystemInformation(SystemLoadGdiDriverInformation, &GdiDriverInfo, sizeof(SYSTEM_GDI_DRIVER_INFORMATION)); if (!NT_SUCCESS(Status)) { - DPRINT1("ZwSetSystemInformation faild with status 0x%lx\n", Status); + DPRINT1("ZwSetSystemInformation failed with Status 0x%lx\n", Status); } else { hImageHandle = (HANDLE)GdiDriverInfo.ImageAddress; @@ -269,15 +269,15 @@ EngUnloadImage ( IN HANDLE hModule ) { NTSTATUS Status; - DPRINT1("hModule=%x\n", hModule); + DPRINT("hModule 0x%x\n", hModule); Status = ZwSetSystemInformation(SystemUnloadGdiDriverInformation, &hModule, sizeof(HANDLE)); if(!NT_SUCCESS(Status)) { - DPRINT1("%s: ZwSetSystemInformation failed with status %x.", - __FUNCTION__, Status); + DPRINT1("ZwSetSystemInformation failed with status 0x%08X\n", + Status); } else {