input: Fix minor issue while reporting disable cursor
[src/agl-compositor.git] / src / input.c
index 026625f..ad4977c 100644 (file)
@@ -177,7 +177,7 @@ ivi_shell_handle_seat_created(struct wl_listener *listener, void *data)
        struct ivi_compositor *ivi =
                container_of(listener, struct ivi_compositor, seat_created_listener);
 
-       weston_log("Cursor is %s\n", ivi->disable_cursor ? "set" : "not set");
+       weston_log("Cursor is %s\n", ivi->disable_cursor ? "disabled" : "not disabled");
        ivi_shell_seat_create(seat, ivi->disable_cursor);
 }
 
@@ -204,7 +204,7 @@ ivi_seat_init(struct ivi_compositor *ivi)
 
        wl_list_for_each(seat, &ec->seat_list, link) {
                weston_log("Seat %p, cursor is %s\n", seat, ivi->disable_cursor ?
-                               "set" : "not set");
+                               "not disabled" : "disabled");
                ivi_shell_seat_create(seat, ivi->disable_cursor);
        }