added explanation for cmds with no output

This commit is contained in:
2020-08-23 22:02:24 +02:00
parent bf7d745a73
commit 26c5f5a91d
2 changed files with 6 additions and 3 deletions

View File

@@ -67,8 +67,9 @@ void getcmds(int time)
for(int i = 0; i < LENGTH(blocks); i++)
{
current = blocks + i;
if ((current->interval != 0 && time % current->interval == 0) || time == -1)
if ((current->interval != 0 && time % current->interval == 0) || time == -1){
getcmd(current,statusbar[i]);
}
}
}