Bug 640117 - Unchecked return value in AudioParent::Notify; r=dougt

This commit is contained in:
Ms2ger 2011-03-31 15:38:30 -04:00
Родитель 0c4f09760f
Коммит d2a3d8ea92
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -160,7 +160,7 @@ AudioParent::Notify(nsITimer* timer)
NS_ASSERTION(mStream, "AudioStream not initialized.");
PRInt64 offset = mStream->GetSampleOffset();
SendSampleOffsetUpdate(offset, PR_IntervalNow());
unused << SendSampleOffsetUpdate(offset, PR_IntervalNow());
return NS_OK;
}