Bug 562457 - comparison between signed and unsigned integer expressions in nsGeolocationRequest::Allow, r=dholbert

This commit is contained in:
timeless@mozdev.org 2010-04-28 13:54:00 -07:00
Родитель 62a31492f2
Коммит 2f5d8a90a7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -277,7 +277,7 @@ nsGeolocationRequest::Allow()
}
if (lastPosition && maximumAge > 0 &&
( (PR_Now() / PR_USEC_PER_MSEC) - maximumAge <=
( PRTime(PR_Now() / PR_USEC_PER_MSEC) - maximumAge <=
PRTime(cachedPositionTime) )) {
// okay, we can return a cached position
mAllowed = PR_TRUE;