diff --git a/src/core/monojob.c b/src/core/monojob.c index a7e83851..3c023c40 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(); }