Using numerous form

Change-Id: I6664790e0aa50abdf9c2adb224168065ce57cb8c
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
Robert Loehning
2012-07-31 16:26:10 +02:00
committed by Robert Löhning
parent 7f962aeb6b
commit 7b9cd61e5f

View File

@@ -243,8 +243,8 @@ ElfReader::Result ElfReader::readIt()
QTC_CHECK(data == mapper.ustart + (is64Bit ? 64 : 52));
if (quint64(e_shnum) * e_shentsize > fdlen) {
const QString reason = tr("announced %1 sections, each %2 bytes, exceed file size")
.arg(e_shnum).arg(e_shentsize);
const QString reason = tr("announced %n sections, each %1 bytes, exceed file size", 0, e_shnum)
.arg(e_shentsize);
m_errorString = msgInvalidElfObject(m_binary, reason);
return Corrupt;
}