Module: wine Branch: master Commit: 3aebd595a8d51ec90f16181e85c19a65c3257b81 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3aebd595a8d51ec90f16181e85...
Author: Francois Gouget fgouget@free.fr Date: Tue Jun 12 17:50:06 2007 +0200
gdiplus: Add missing '\n' in Wine trace.
---
dlls/gdiplus/gdiplus.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/gdiplus/gdiplus.c b/dlls/gdiplus/gdiplus.c index 6b2683a..7ebd848 100644 --- a/dlls/gdiplus/gdiplus.c +++ b/dlls/gdiplus/gdiplus.c @@ -55,10 +55,10 @@ Status WINAPI GdiplusStartup(ULONG_PTR *token, const struct GdiplusStartupInput return UnsupportedGdiplusVersion; } else if ((input->DebugEventCallback) || (input->SuppressBackgroundThread) || (input->SuppressExternalCodecs)){ - FIXME("Unimplemented for non-default GdiplusStartupInput"); + FIXME("Unimplemented for non-default GdiplusStartupInput\n"); return NotImplemented; } else if(output) { - FIXME("Unimplemented for non-null GdiplusStartupOutput"); + FIXME("Unimplemented for non-null GdiplusStartupOutput\n"); return NotImplemented; }