Bug 1650945 - Fix error message in IIRFilterNode::Create; r=padenot

Differential Revision: https://phabricator.services.mozilla.com/D82716
This commit is contained in:
Dan Minor 2020-07-08 14:05:33 +00:00
Родитель 9be974e02b
Коммит d8e1e4a499
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -174,7 +174,7 @@ already_AddRefed<IIRFilterNode> IIRFilterNode::Create(
if (aOptions.mFeedback.Length() == 0 || aOptions.mFeedback.Length() > 20) {
aRv.ThrowNotSupportedError(
nsPrintfCString("\"feedback\" length %zu is not in the range [1,20]",
aOptions.mFeedforward.Length()));
aOptions.mFeedback.Length()));
return nullptr;
}