mirror of
https://github.com/ipxe/ipxe
synced 2025-12-15 09:04:37 +03:00
One bit of an ASCII character can make a big difference.
This commit is contained in:
@@ -107,7 +107,7 @@ static void retry_step ( struct process *process ) {
|
|||||||
unsigned long now = currticks();
|
unsigned long now = currticks();
|
||||||
|
|
||||||
list_for_each_entry_safe ( timer, tmp, &timers, list ) {
|
list_for_each_entry_safe ( timer, tmp, &timers, list ) {
|
||||||
if ( timer->expiry >= now ) {
|
if ( timer->expiry <= now ) {
|
||||||
timer->retries++;
|
timer->retries++;
|
||||||
reload_timer ( timer );
|
reload_timer ( timer );
|
||||||
timer->expired ( timer );
|
timer->expired ( timer );
|
||||||
|
|||||||
Reference in New Issue
Block a user