summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2014-04-02 13:03:29 -0400
committerJasper St. Pierre <jstpierre@mecheye.net>2014-04-02 13:03:29 -0400
commit2a7d12ba142fcc7876245785c1d4c75776e9b8a4 (patch)
tree3fe00f18c582f35401a4b4e59ff8efcbca1fc4e8
parentc4c0b5f0ab461a6346ad0820b41cf9eea25f9e33 (diff)
downloadmutter-2a7d12ba142fcc7876245785c1d4c75776e9b8a4.tar.gz
xwayland: Make failing to exec a fatal error
-rw-r--r--src/wayland/meta-xwayland.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wayland/meta-xwayland.c b/src/wayland/meta-xwayland.c
index 2904965af..cfef99e76 100644
--- a/src/wayland/meta-xwayland.c
+++ b/src/wayland/meta-xwayland.c
@@ -398,8 +398,7 @@ meta_xwayland_start (MetaXWaylandManager *manager,
"-nolisten", "all",
NULL) < 0)
{
- g_warning ("Failed to spawn XWayland: %m");
- exit (EXIT_FAILURE);
+ g_error ("Failed to spawn XWayland: %m");
}
}
else if (manager->pid == -1)