fix: increase sleep interval in main loop from 30s to 59s for dot.c

This commit is contained in:
retoor 2024-12-01 03:58:35 +00:00
parent 2c1778cf2c
commit eedf21df3c
2 changed files with 1 additions and 1 deletions

BIN
dot

Binary file not shown.

2
dot.c
View File

@ -37,7 +37,7 @@ int main(int argc, char *argv[]) {
print_load();
printf(".%s", "\n");
fflush(stdout);
usleep(30 * 1000 * 1000);
usleep(59 * 1000 * 1000);
}
return 0;
}