Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[monojob] Allow for extremely slow system timers
The EFI timer runs at one tick per second, so using ">" rather than ">="
results in a two-second gap between dots.
  • Loading branch information
Michael Brown committed Oct 12, 2008
1 parent 16f1e35 commit 658c6db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/monojob.c
Expand Up @@ -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();
}
Expand Down

0 comments on commit 658c6db

Please sign in to comment.