From 4f4cc28132f55fd9d30e2a27c803159c70855a11 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 15 Nov 2007 19:22:23 +0100 Subject: [PATCH] winex11: Add the trailing '\n' to a Wine trace. --- dlls/winex11.drv/opengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winex11.drv/opengl.c b/dlls/winex11.drv/opengl.c index ed085ba6717..712e1a89a41 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);