aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/vcpkg_Environment.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg_Environment.cpp b/toolsrc/src/vcpkg_Environment.cpp
index aaa6bb106..b6705cc47 100644
--- a/toolsrc/src/vcpkg_Environment.cpp
+++ b/toolsrc/src/vcpkg_Environment.cpp
@@ -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);
}