aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_Environment.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-01-23 17:49:41 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-01-23 18:30:39 -0800
commit64bcc326fb98a7ae8249cc50b6305166e8f3ac89 (patch)
treec686f373a01b32039dbe89bdeb2e88c014330227 /toolsrc/src/vcpkg_Environment.cpp
parent44810f267d095986f519d8b41592e83e913c2e56 (diff)
downloadvcpkg-64bcc326fb98a7ae8249cc50b6305166e8f3ac89.tar.gz
vcpkg-64bcc326fb98a7ae8249cc50b6305166e8f3ac89.zip
Improve format of output error messages
Diffstat (limited to 'toolsrc/src/vcpkg_Environment.cpp')
-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);
}