summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-09-21 21:33:21 +0200
committerDaniel Friesel <derf@finalrewind.org>2021-09-21 21:33:21 +0200
commit9fb7c1bbc8b25a3e1e45cf353999d997a3f6c92e (patch)
tree55a5d963c98329b0b47d2e9954a324c397400014
parent6c6bb8adaaf3c4e20b5a1e5dbdc02e25b0a00e85 (diff)
Do not hardcode STDIN_FILENO == 0
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 1497be2..93f02ad 100644
--- a/src/main.c
+++ b/src/main.c
@@ -210,7 +210,7 @@ int feh_main_iteration(int block)
in that */
feh_handle_timer();
}
- else if ((count > 0) && (FD_ISSET(0, &fdset)))
+ else if ((count > 0) && (FD_ISSET(STDIN_FILENO, &fdset)))
feh_event_handle_stdin();
#ifdef HAVE_INOTIFY
else if ((count > 0) && (FD_ISSET(opt.inotify_fd, &fdset)))
@@ -227,7 +227,7 @@ int feh_main_iteration(int block)
&& ((errno == ENOMEM) || (errno == EINVAL)
|| (errno == EBADF)))
eprintf("Connection to X display lost");
- else if ((count > 0) && (FD_ISSET(0, &fdset)))
+ else if ((count > 0) && (FD_ISSET(STDIN_FILENO, &fdset)))
feh_event_handle_stdin();
#ifdef HAVE_INOTIFY
else if ((count > 0) && (FD_ISSET(opt.inotify_fd, &fdset)))