- On the 'udas' report, the orphans were not counted separately for
  the totals.
This commit is contained in:
Paul Beckingham 2012-07-16 01:21:58 -04:00
parent 2815fcb90d
commit a3b56feb1f
2 changed files with 3 additions and 2 deletions

View file

@ -158,8 +158,8 @@ int CmdUDAs::execute (std::string& output)
<< orphanView.render ()
<< optionalBlankLine ()
<< (udas.size () == 1
? format (STRING_CMD_UDAS_ORPHAN, udas.size ())
: format (STRING_CMD_UDAS_ORPHANS, udas.size ()))
? format (STRING_CMD_UDAS_ORPHAN, orphans.size ())
: format (STRING_CMD_UDAS_ORPHANS, orphans.size ()))
<< "\n";
}