mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-12 00:50:40 +00:00
Bug 530386 - Replace PR_MIN/PR_MAX with NS_MIN/NS_MAX in toolkit/components/url-classifier, r=tony
This commit is contained in:
parent
58cdd43a57
commit
3b813d491d
@ -718,7 +718,7 @@ nsUrlClassifierHashCompleter::NoteServerResponse(PRBool success)
|
||||
}
|
||||
|
||||
if (mBackoff) {
|
||||
mBackoffTime = PR_MIN(mBackoffTime, gBackoffMax);
|
||||
mBackoffTime = NS_MIN(mBackoffTime, gBackoffMax);
|
||||
LOG(("Using %d for backoff time", mBackoffTime));
|
||||
mNextRequestTime = now + PR_SecondsToInterval(mBackoffTime);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user