From 0ac46dd0d336fb369c0610cf554be342badf3210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Wed, 17 Sep 2014 12:12:28 +0000 Subject: [PATCH] [WIN32K] - Silence a forgotten and very noisy DPRINT. svn path=/trunk/; revision=64180 --- reactos/win32ss/gdi/ntgdi/region.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/win32ss/gdi/ntgdi/region.c b/reactos/win32ss/gdi/ntgdi/region.c index cda069cccc5..b4863b1364d 100644 --- a/reactos/win32ss/gdi/ntgdi/region.c +++ b/reactos/win32ss/gdi/ntgdi/region.c @@ -3381,7 +3381,7 @@ NtGdiCreateRectRgn(INT LeftRect, INT TopRect, INT RightRect, INT BottomRect) REGION_SetRectRgn(pRgn, LeftRect, TopRect, RightRect, BottomRect); RGNOBJAPI_Unlock(pRgn); - DPRINT1("Returning %p.\n", hRgn); + DPRINT("Returning %p.\n", hRgn); return hRgn; }