Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,11 @@ main(int ac, char **av)
if (CheckJobs() > 0)
stime = 10;
else
stime = 60;
/* Used to be 60 but this skips aminute when,
* time is at :55 because of sleep(5), which happens
* on heavy filesystem load.
*/
stime = 30;
t1 = t2;
}
}
Expand Down