From 09e72e590d5ebae06459a45ed1a14449126ee0ea Mon Sep 17 00:00:00 2001 From: Utkarsh Verma Date: Thu, 21 Apr 2022 19:04:41 +0530 Subject: [PATCH] maxInterval should bet at least 1 --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index 1be0f8d..97ea568 100644 --- a/main.c +++ b/main.c @@ -41,7 +41,7 @@ static Window root; static unsigned short statusContinue = 1; static struct epoll_event event; static int pipes[LEN(blocks)][2]; -static int timer = 0, timerTick = 0, maxInterval = 0; +static int timer = 0, timerTick = 0, maxInterval = 1; static int signalFD; static int epollFD; static int execLock = 0;