SV4-144 fix google flags default notation

This commit is contained in:
Rodrigo Reichert 2021-06-09 08:22:25 +10:00 committed by GitHub
commit 39798a58c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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();