aboutsummaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'main.c')
-rw-r--r--main.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/main.c b/main.c
index f133d2e..5c6eed3 100644
--- a/main.c
+++ b/main.c
@@ -435,8 +435,12 @@ main(int argc, const char *const *argv)
break;
}
- if (fds[0].revents & POLLIN)
- wl_display_dispatch(display);
+ if (fds[0].revents & POLLIN) {
+ if (wl_display_dispatch(display) < 0) {
+ LOG_ERRNO("failed to dispatch Wayland events");
+ break;
+ }
+ }
if (fds[1].revents & POLLHUP)
abort();