Module: wine Branch: master Commit: c7e6f208d621045f012c5e3f334f9dcc26b9a87f URL: https://gitlab.winehq.org/wine/wine/-/commit/c7e6f208d621045f012c5e3f334f9dc...
Author: Francois Gouget fgouget@free.fr Date: Sun Jul 23 11:49:24 2023 +0200
winex11.drv: Add a trailing linefeed to a WARN() message.
---
dlls/winex11.drv/window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winex11.drv/window.c b/dlls/winex11.drv/window.c index 9ada6a63d59..ed3728773af 100644 --- a/dlls/winex11.drv/window.c +++ b/dlls/winex11.drv/window.c @@ -1526,7 +1526,7 @@ Window get_dummy_parent(void) dummy_parent = XCreateWindow( gdi_display, root_window, -1, -1, 1, 1, 0, default_visual.depth, InputOutput, default_visual.visual, CWColormap | CWBorderPixel | CWOverrideRedirect, &attrib ); - WARN("Xshape support is not compiled in. Applications under XWayland may have poor performance."); + WARN("Xshape support is not compiled in. Applications under XWayland may have poor performance.\n"); #endif XMapWindow( gdi_display, dummy_parent ); }