Improve format of output error messages

This commit is contained in:
Alexander Karatarakis 2017-01-23 17:49:41 -08:00
parent 44810f267d
commit 64bcc326fb

View File

@ -155,7 +155,7 @@ namespace vcpkg::Environment
System::println("The following paths were examined:");
for (const fs::path& path : paths_examined)
{
System::println(path.generic_string());
System::println(" %s", path.generic_string());
}
exit(EXIT_FAILURE);
}
@ -194,7 +194,7 @@ namespace vcpkg::Environment
System::println("The following paths were examined:");
for (const fs::path& path : paths_examined)
{
System::println(path.generic_string());
System::println(" %s",path.generic_string());
}
exit(EXIT_FAILURE);
}