Skip to content
Snippets Groups Projects
Commit d8b70550 authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #7870 from cgundogan/pr/trickle_timer_fix

trickle: correctly reset t
parents 250fce16 58525176
No related branches found
No related tags found
No related merge requests found
...@@ -61,7 +61,7 @@ void trickle_reset_timer(trickle_t *trickle) ...@@ -61,7 +61,7 @@ void trickle_reset_timer(trickle_t *trickle)
assert(trickle->I > trickle->Imin); assert(trickle->I > trickle->Imin);
trickle_stop(trickle); trickle_stop(trickle);
trickle->I = trickle->Imin; trickle->I = trickle->t = trickle->Imin;
trickle_interval(trickle); trickle_interval(trickle);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment