Bug 1872315 - clang-format DecoderTemplate.* r=media-playback-reviewers,alwu

Differential Revision: https://phabricator.services.mozilla.com/D197397
This commit is contained in:
Chun-Min Chang 2023-12-29 16:06:44 +00:00
Родитель 2baa039520
Коммит 445c72eacd
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -139,7 +139,8 @@ void DecoderTemplate<DecoderType>::Configure(const ConfigType& aConfig,
nsCString errorMessage;
if (!DecoderType::Validate(aConfig, errorMessage)) {
aRv.ThrowTypeError(nsPrintfCString("config is invalid: %s", errorMessage.get()));
aRv.ThrowTypeError(
nsPrintfCString("config is invalid: %s", errorMessage.get()));
return;
}