Commit 12f29135 authored by Kevin Modzelewski's avatar Kevin Modzelewski

max->min

parent af59d5ae
......@@ -71,7 +71,7 @@ ICSlotRewrite::~ICSlotRewrite() {
}
void ICSlotRewrite::abort() {
ic->retry_backoff = std::max(MAX_RETRY_BACKOFF, 2 * ic->retry_backoff);
ic->retry_backoff = std::min(MAX_RETRY_BACKOFF, 2 * ic->retry_backoff);
ic->retry_in = ic->retry_backoff;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment