Signed-off-by: Bryce Harrington <[email protected]>
---
 clients/weston-simple-im.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/clients/weston-simple-im.c b/clients/weston-simple-im.c
index 1663d84..f766a88 100644
--- a/clients/weston-simple-im.c
+++ b/clients/weston-simple-im.c
@@ -500,7 +500,7 @@ main(int argc, char *argv[])
        wl_display_roundtrip(simple_im.display);
        if (simple_im.input_method == NULL) {
                fprintf(stderr, "No input_method global\n");
-               exit(1);
+               return -1;
        }
 
        simple_im.xkb_context = xkb_context_new(0);
@@ -517,7 +517,7 @@ main(int argc, char *argv[])
 
        if (ret == -1) {
                fprintf(stderr, "Dispatch error: %m\n");
-               exit(1);
+               return -1;
        }
 
        return 0;
-- 
1.9.1

_______________________________________________
wayland-devel mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/wayland-devel

Reply via email to