Skip to content

Commit 9901faa

Browse files
committed
Increase help space for option names
to accommodate the new option --enable-network-proxy
1 parent e76e4ae commit 9901faa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/libflags/source/Flags.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,11 +110,11 @@ namespace {
110110
// print flag name
111111
os << flag_name;
112112
// decide if the help text goes into the same line or not
113-
if (flag_size > 22) {
113+
if (flag_size > 25) {
114114
os << std::endl
115115
<< std::string(15, ' ');
116116
} else {
117-
os << std::string(23 - flag_size, ' ');
117+
os << std::string(26 - flag_size, ' ');
118118
}
119119
os << option.help;
120120
// print default value if exists

0 commit comments

Comments
 (0)