Module: wine Branch: master Commit: 4f4cc28132f55fd9d30e2a27c803159c70855a11 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4f4cc28132f55fd9d30e2a27c8...
Author: Francois Gouget fgouget@free.fr Date: Thu Nov 15 19:22:23 2007 +0100
winex11: Add the trailing '\n' to a Wine trace.
---
dlls/winex11.drv/opengl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winex11.drv/opengl.c b/dlls/winex11.drv/opengl.c index ed085ba..712e1a8 100644 --- a/dlls/winex11.drv/opengl.c +++ b/dlls/winex11.drv/opengl.c @@ -1532,7 +1532,7 @@ BOOL X11DRV_wglCopyContext(HGLRC hglrcSrc, HGLRC hglrcDst, UINT mask) { * for more than 7 years and this function has remained a stub ever since then. */ if(!src->ctx || !dst->ctx) { - FIXME("No source or destination context available! This could indicate a Wine bug."); + FIXME("No source or destination context available! This could indicate a Wine bug.\n"); return FALSE; } pglXCopyContext(gdi_display, src->ctx, dst->ctx, mask);