Francois Gouget : gdiplus: Add a trailing linefeed to an ERR() message.

Alexandre Julliard julliard at winehq.org
Fri Sep 8 15:03:21 CDT 2017


Module: wine
Branch: master
Commit: cbacc556ec1cd0cffe42ae43cd1db1bd4d22e149
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=cbacc556ec1cd0cffe42ae43cd1db1bd4d22e149

Author: Francois Gouget <fgouget at free.fr>
Date:   Fri Sep  8 02:13:17 2017 +0200

gdiplus: Add a trailing linefeed to an ERR() message.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Vincent Povirk <vincent at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/gdiplus/graphics.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index ea02c6b..9ca1d4e 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -6668,7 +6668,7 @@ GpStatus gdi_transform_release(GpGraphics *graphics)
 {
     if (graphics->gdi_transform_acquire_count <= 0)
     {
-        ERR("called without matching gdi_transform_acquire");
+        ERR("called without matching gdi_transform_acquire\n");
         return GenericError;
     }
     if (graphics->gdi_transform_acquire_count == 1 && graphics->hdc)




More information about the wine-cvs mailing list