diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-23 17:49:41 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-01-23 18:30:39 -0800 |
| commit | 64bcc326fb98a7ae8249cc50b6305166e8f3ac89 (patch) | |
| tree | c686f373a01b32039dbe89bdeb2e88c014330227 /toolsrc/src/vcpkg_Environment.cpp | |
| parent | 44810f267d095986f519d8b41592e83e913c2e56 (diff) | |
| download | vcpkg-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.cpp | 4 |
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); } |
