From e6b7136641faf42c4619eb3d50e85d0c4e932b90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Armin=20Krezovi=C4=87?= Date: Thu, 9 Feb 2017 21:28:32 +0100 Subject: [PATCH] compositor: Improve xwayland warning message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit And fix formatting. Signed-off-by: Armin Krezović Reviewed-by: Quentin Glidic --- compositor/main.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/compositor/main.c b/compositor/main.c index 4bd6e681..72c3cd10 100644 --- a/compositor/main.c +++ b/compositor/main.c @@ -860,9 +860,10 @@ load_modules(struct weston_compositor *ec, const char *modules, snprintf(buffer, sizeof buffer, "%.*s", (int) (end - p), p); if (strstr(buffer, "xwayland.so")) { - weston_log("Old Xwayland module loading detected:" - "Please use --xwayland command line option" - "or weston.ini xwayland=true\n"); + weston_log("Old Xwayland module loading detected: " + "Please use --xwayland command line option " + "or set xwayland=true in the [core] section " + "in weston.ini\n"); *xwayland = 1; } else { if (wet_load_module(ec, buffer, argc, argv) < 0)