diff options
author | lloyd <[email protected]> | 2015-01-04 17:16:10 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-01-04 17:16:10 +0000 |
commit | 5fb44f29a4b27905668d90a4ff46d882a41f5951 (patch) | |
tree | 31acfb374c20ad310cdda0c4d92e2060557b7010 /src | |
parent | ad0812e1c9de22839847364759b064c040e827a6 (diff) |
Make the help output slightly more helpful
Diffstat (limited to 'src')
-rw-r--r-- | src/cmd/getopt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/getopt.h b/src/cmd/getopt.h index 4fecada2a..40558aec8 100644 --- a/src/cmd/getopt.h +++ b/src/cmd/getopt.h @@ -56,7 +56,7 @@ class OptionParser for(auto flag : flags) { - o << flag.name(); + o << "--" << flag.name(); if(flag.takes_arg()) o << "="; o << " "; |