aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_remove.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-06 18:22:53 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-07 15:45:13 -0700
commit1ed61c4de820da8a33828b3a220742357d2c004d (patch)
tree82695d778aa0efa96ef55b21cc2518b66d1ab873 /toolsrc/src/commands_remove.cpp
parentcdc77fdae4c6084a2650757c95ee4497f484fa83 (diff)
downloadvcpkg-1ed61c4de820da8a33828b3a220742357d2c004d.tar.gz
vcpkg-1ed61c4de820da8a33828b3a220742357d2c004d.zip
Fix output formatting
Diffstat (limited to 'toolsrc/src/commands_remove.cpp')
-rw-r--r--toolsrc/src/commands_remove.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_remove.cpp b/toolsrc/src/commands_remove.cpp
index b57137b56..185bc4185 100644
--- a/toolsrc/src/commands_remove.cpp
+++ b/toolsrc/src/commands_remove.cpp
@@ -125,7 +125,7 @@ namespace vcpkg::Commands::Remove
{
std::sort(not_installed.begin(), not_installed.end(), &PackageSpecWithRemovePlan::compare_by_name);
System::println("The following packages are not installed, so not removed:\n%s",
- Strings::join("\n ", not_installed, [](const PackageSpecWithRemovePlan* p)
+ Strings::join("\n", not_installed, [](const PackageSpecWithRemovePlan* p)
{
return " " + p->spec.to_string();
}));