diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-31 18:22:02 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-31 18:22:02 -0700 |
| commit | 03edddef2402d7a578c7714b6b28d3734e3d3940 (patch) | |
| tree | 8628a4d2b1714734f885a1fe3878ebe57683fcfb /toolsrc/src/commands_list.cpp | |
| parent | 170cfa3f39d969ed5ebab7693610ffff9a313530 (diff) | |
| download | vcpkg-03edddef2402d7a578c7714b6b28d3734e3d3940.tar.gz vcpkg-03edddef2402d7a578c7714b6b28d3734e3d3940.zip | |
[vcpkg list] Naming convention fix
Diffstat (limited to 'toolsrc/src/commands_list.cpp')
| -rw-r--r-- | toolsrc/src/commands_list.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_list.cpp b/toolsrc/src/commands_list.cpp index 98e26f3d0..640885860 100644 --- a/toolsrc/src/commands_list.cpp +++ b/toolsrc/src/commands_list.cpp @@ -8,9 +8,9 @@ namespace vcpkg::Commands::List { static const std::string OPTION_FULLDESC = "--x-full-desc"; // TODO: This should find a better home, eventually - static void do_print(const StatusParagraph& pgh, bool FullDesc) + static void do_print(const StatusParagraph& pgh, bool full_desc) { - if (FullDesc) + if (full_desc) { System::println("%-30s %-16s %s", pgh.package.displayname(), pgh.package.version, pgh.package.description); } |
