[vcpkg list] Naming convention fix

This commit is contained in:
Alexander Karatarakis 2017-08-31 18:22:02 -07:00
parent 170cfa3f39
commit 03edddef24

View File

@ -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);
}