From c8cf34eb849bf685650bb36633643ffcc4dcd5fa Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Mon, 5 Mar 2007 15:17:53 +0000 Subject: [PATCH] fixed dprint1 to dprint svn path=/trunk/; revision=26001 --- reactos/subsystems/win32/win32k/objects/dc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/subsystems/win32/win32k/objects/dc.c b/reactos/subsystems/win32/win32k/objects/dc.c index 010c32090b7..207c49fcfc1 100644 --- a/reactos/subsystems/win32/win32k/objects/dc.c +++ b/reactos/subsystems/win32/win32k/objects/dc.c @@ -813,21 +813,21 @@ IntGdiCreateDC(PUNICODE_STRING Driver, if (Driver != NULL) { - DPRINT1("NAME Driver: %wZ\n", Driver); + DPRINT("NAME Driver: %wZ\n", Driver); } else { - DPRINT1("NAME Driver: NULL\n", Driver); + DPRINT("NAME Driver: NULL\n", Driver); } if (Driver != NULL) { - DPRINT1("NAME Device: %wZ\n", Device); + DPRINT("NAME Device: %wZ\n", Device); } else { - DPRINT1("NAME Device: NULL\n", Device); + DPRINT("NAME Device: NULL\n", Device); }