Fixed a minor bug in error detection in Wayland test
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;
}