diff options
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h index 80be69c4..642142aa 100644 --- a/src/option.h +++ b/src/option.h @@ -95,7 +95,7 @@ public: if (wants_arg) { out << " = "; out.width(42); - out << value; + out << std::left << value; } else { out.width(45); out << ' '; |