From f1effc075378fa09664b31388b015e9b9d3221c4 Mon Sep 17 00:00:00 2001 From: Jethro Beekman Date: Wed, 4 Feb 2015 14:41:35 -0800 Subject: [PATCH] Missing colon in info output --- ffsengine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ffsengine.cpp b/ffsengine.cpp index 1c7e9a6..9b4d290 100644 --- a/ffsengine.cpp +++ b/ffsengine.cpp @@ -1317,7 +1317,7 @@ UINT8 FfsEngine::parseSection(const QByteArray & section, QModelIndex & index, c // Get info name = guidToQString(guidDefinedSectionHeader->SectionDefinitionGuid); - info = tr("Section GUID: %1h\nType %2h\nFull size: %3h (%4)\nHeader size: %5h (%6)\nBody size: %7h (%8)\nData offset: %9h\nAttributes: %10h") + info = tr("Section GUID: %1h\nType: %2h\nFull size: %3h (%4)\nHeader size: %5h (%6)\nBody size: %7h (%8)\nData offset: %9h\nAttributes: %10h") .arg(name) .hexarg2(sectionHeader->Type, 2) .hexarg(section.size()).arg(section.size())