Bug 1341412 - Baldr: fix rebase fail (r=bustage)

MozReview-Commit-ID: Kydw7jaZiQ7

--HG--
extra : rebase_source : 760a4058ca6b548e00edc823707545f97d954f7d
This commit is contained in:
Luke Wagner 2017-02-23 18:14:04 -06:00
Родитель 7e8f316730
Коммит 435f2dfc9a
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -618,8 +618,8 @@ DecodePreamble(Decoder& d)
return d.fail("failed to match magic number");
if (!d.readFixedU32(&u32) || u32 != EncodingVersion) {
return d.fail("binary version 0x%" PRIx32 " does not match expected version 0x%" PRIx32,
u32, EncodingVersion);
return d.failf("binary version 0x%" PRIx32 " does not match expected version 0x%" PRIx32,
u32, EncodingVersion);
}
return true;