Fix the build error caused by the previous build fix

This commit is contained in:
Jean Flach 2015-02-19 17:27:42 +01:00
parent e9f9a2d665
commit b026bb713f
1 changed files with 4 additions and 4 deletions

View File

@ -356,12 +356,12 @@ void TroubleshootCollectCommand::CheckObjectFile(const String& objectfile, InfoL
continue;
bool first = true;
/*
if (print)
ObjectListUtility::PrintObject(std::ostream(nullptr), first, message, type_count, "", "");
ObjectListUtility::PrintObject(std::ostream(NULL), first, message, type_count, "", "");
else
ObjectListUtility::PrintObject(std::ostream(nullptr), first, message, type_count, "", "");
*/
ObjectListUtility::PrintObject(std::ostream(NULL), first, message, type_count, "", "");
Dictionary::Ptr object = JsonDecode(message);
Dictionary::Ptr properties = object->Get("properties");