SV4-144 fix google flags default notation

This commit is contained in:
Rodrigo Reichert 2021-06-08 15:55:21 +10:00
parent d4a0451433
commit a028ebb818

View file

@ -123,7 +123,7 @@ static string PrintStringFlagsWithQuotes(const CommandLineFlagInfo& flag,
// Goes to some trouble to make pretty line breaks.
string DescribeOneFlag(const CommandLineFlagInfo& flag) {
string main_part;
SStringPrintf(&main_part, " -%s (%s)",
SStringPrintf(&main_part, " --%s (%s)",
flag.name.c_str(),
flag.description.c_str());
const char* c_string = main_part.c_str();