From 417c217247e91ccd5ac764b62dbfa471e2a3b379 Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Thu, 30 Aug 2007 20:01:59 +0000 Subject: [PATCH] do not hide stub with a DPRINT1 print it svn path=/trunk/; revision=28685 --- reactos/subsystems/win32/win32k/objects/dc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsystems/win32/win32k/objects/dc.c b/reactos/subsystems/win32/win32k/objects/dc.c index 2405241a76f..a3b717e8b19 100644 --- a/reactos/subsystems/win32/win32k/objects/dc.c +++ b/reactos/subsystems/win32/win32k/objects/dc.c @@ -3288,7 +3288,7 @@ NtGdiGetBoundsRect( OUT LPRECT prc, IN DWORD f) { - DPRINT("stub"); + DPRINT1("stub"); return DCB_RESET; /* bounding rectangle always empty */ } @@ -3299,7 +3299,7 @@ NtGdiSetBoundsRect( IN LPRECT prc, IN DWORD f) { - DPRINT("stub"); + DPRINT1("stub"); return DCB_DISABLE; /* bounding rectangle always empty */ }