aboutsummaryrefslogtreecommitdiff
path: root/src/Main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Main.c')
-rw-r--r--src/Main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Main.c b/src/Main.c
index e941921..2830818 100644
--- a/src/Main.c
+++ b/src/Main.c
@@ -110,7 +110,7 @@ int main(int argc, char *argv[]) {
fd_set fds;
FD_ZERO(&fds);
FD_SET(tty_fd, &fds);
- struct timeval tv = { .tv_sec = 0, .tv_usec = 10000 };
+ struct timeval tv = { .tv_sec = 0, .tv_usec = 100000 };
if (select(tty_fd + 1, &fds, NULL, NULL, &tv) > 0) {
handle_input();
}