maxInterval should bet at least 1
This commit is contained in:
parent
23e1d5732a
commit
09e72e590d
2
main.c
2
main.c
|
@ -41,7 +41,7 @@ static Window root;
|
||||||
static unsigned short statusContinue = 1;
|
static unsigned short statusContinue = 1;
|
||||||
static struct epoll_event event;
|
static struct epoll_event event;
|
||||||
static int pipes[LEN(blocks)][2];
|
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 signalFD;
|
||||||
static int epollFD;
|
static int epollFD;
|
||||||
static int execLock = 0;
|
static int execLock = 0;
|
||||||
|
|
Loading…
Reference in New Issue