Minor cleanup to the type format list command

llvm-svn: 253110
This commit is contained in:
Enrico Granata 2015-11-14 00:58:21 +00:00
parent fb484cedb4
commit 6f6f7396ba
1 changed files with 2 additions and 2 deletions

View File

@ -1372,9 +1372,9 @@ private:
cate->GetTypeFormatsContainer()->LoopThrough(CommandObjectTypeFormatList_LoopCallback, param_vp);
if (cate->GetRegexTypeSummariesContainer()->GetCount() > 0)
if (cate->GetRegexTypeFormatsContainer()->GetCount() > 0)
{
result->GetOutputStream().Printf("Regex-based summaries (slower):\n");
result->GetOutputStream().Printf("Regex-based formats (slower):\n");
cate->GetRegexTypeFormatsContainer()->LoopThrough(CommandObjectTypeRXFormatList_LoopCallback, param_vp);
}
return true;