summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/core/monojob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/monojob.c b/src/core/monojob.c
index a7e838514..3c023c402 100644
--- a/src/core/monojob.c
+++ b/src/core/monojob.c
@@ -83,7 +83,7 @@ int monojob_wait ( const char *string ) {
}
}
elapsed = ( currticks() - last_progress_dot );
- if ( elapsed > TICKS_PER_SEC ) {
+ if ( elapsed >= TICKS_PER_SEC ) {
printf ( "." );
last_progress_dot = currticks();
}