Clean Build

- Removed a warning for a clean build on CentOS.
This commit is contained in:
Paul Beckingham
2011-06-27 00:10:33 -04:00
parent f5ea55031c
commit 1813f67230

View File

@@ -137,12 +137,11 @@ int CmdDone::execute (std::string& output)
context.tdb.unlock (); context.tdb.unlock ();
if (context.config.getBoolean ("echo.command")) if (context.config.getBoolean ("echo.command"))
if (count == 1) out << format ((count == 1
out << format (STRING_CMD_DONE_MARKED, count) ? STRING_CMD_DONE_MARKED
<< "\n"; : STRING_CMD_DONE_MARKED_N),
else count)
out << format (STRING_CMD_DONE_MARKED_N, count) << "\n";
<< "\n";
output = out.str (); output = out.str ();
return rc; return rc;