зеркало из https://github.com/mozilla/gecko-dev.git
Bug 951288 - Use NS_WARN_IF_FALSE rather than NS_WARNING to fix bustage and reopen the CLOSED TREE.
This commit is contained in:
Родитель
14b6763f68
Коммит
b173a3b9db
|
@ -1090,8 +1090,8 @@ nsresult OggReader::GetSeekRanges(nsTArray<SeekRange>& aRanges)
|
|||
if (startTime != -1 &&
|
||||
((endTime = RangeEndTime(endOffset)) != -1))
|
||||
{
|
||||
NS_WARNING(startTime < endTime,
|
||||
"Start time must be before end time");
|
||||
NS_WARN_IF_FALSE(startTime < endTime,
|
||||
"Start time must be before end time");
|
||||
aRanges.AppendElement(SeekRange(startOffset,
|
||||
endOffset,
|
||||
startTime,
|
||||
|
|
Загрузка…
Ссылка в новой задаче