From fe1ce0e34102749eb968d473e612b5bdd63e893b Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sat, 26 Jul 2008 19:10:42 +0200 Subject: [PATCH] gdiplus: Add a trailing '\n' to a Wine trace. --- dlls/gdiplus/region.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/gdiplus/region.c b/dlls/gdiplus/region.c index 6c52623f771..4a11623ea35 100644 --- a/dlls/gdiplus/region.c +++ b/dlls/gdiplus/region.c @@ -330,7 +330,7 @@ GpStatus WINGDIPAPI GdipSetInfinite(GpRegion *region) if (!region) return InvalidParameter; - TRACE("%p", region); + TRACE("%p\n", region); delete_element(®ion->node); stat = init_region(region, RegionDataInfiniteRect);