Improve clocks support

This commit is contained in:
Kamil Trzcinski
2022-04-06 13:22:49 +02:00
parent 8eb514c6b0
commit 3fe66378aa
8 changed files with 29 additions and 12 deletions

View File

@ -220,7 +220,7 @@ int links_loop(link_t *all_links, bool *running)
}
while(*running) {
if (links_step(all_links, 1000) < 0) {
if (links_step(all_links, LINKS_LOOP_INTERVAL) < 0) {
links_stream(all_links, false);
return -1;
}