Commit 4f17fc6005e9c379901030bdc2065fae91add08f

Naman Dixit 2017-05-27T09:15:26

Fixed a minor bug in error detection in Wayland test

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/test/interactive-wayland.c b/test/interactive-wayland.c
index c28fbb6..6fd57b8 100644
--- a/test/interactive-wayland.c
+++ b/test/interactive-wayland.c
@@ -345,7 +345,7 @@ kbd_keymap(void *data, struct wl_keyboard *wl_kbd, uint32_t format,
 	}
 
 	seat->state = xkb_state_new(seat->keymap);
-	if (!seat->keymap) {
+	if (!seat->state) {
 		fprintf(stderr, "Failed to create XKB state!\n");
 		return;
 	}