diff options
-rw-r--r-- | fbcon.c | 2 | ||||
-rw-r--r-- | fbi.c | 3 | ||||
-rw-r--r-- | fbpdf.c | 3 |
3 files changed, 5 insertions, 3 deletions
@@ -314,7 +314,7 @@ static void child_exec_shell(struct winsize *win) fprintf(stderr, "\x1b[0m"); /* check for errors */ - if (libinput_deverror != 0) { + if (libinput_deverror != 0 || libinput_devcount == 0) { fprintf(stderr, "ERROR: failed to open input devices (%d ok, %d failed)\n", libinput_devcount, libinput_deverror); return; @@ -1358,7 +1358,8 @@ int main(int argc, char *argv[]) extents = shadow_font_init(fontname); kbd_init(use_libinput, gfx->devnum); - if (use_libinput && libinput_deverror != 0) { + if (use_libinput && (libinput_deverror != 0 || + libinput_devcount == 0)) { fprintf(stderr, "ERROR: failed to open input devices (%d ok, %d failed)\n", libinput_devcount, libinput_deverror); cleanup_and_exit(0); @@ -350,7 +350,8 @@ int main(int argc, char *argv[]) } kbd_init(use_libinput, gfx->devnum); - if (use_libinput && libinput_deverror != 0) { + if (use_libinput && (libinput_deverror != 0 || + libinput_devcount == 0)) { fprintf(stderr, "ERROR: failed to open input devices (%d ok, %d failed)\n", libinput_devcount, libinput_deverror); cleanup_and_exit(0); |