about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/libutil/args.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/args.hh b/src/libutil/args.hh
index 0c7729d0b6b1..4469a046d28a 100644
--- a/src/libutil/args.hh
+++ b/src/libutil/args.hh
@@ -86,7 +86,7 @@ public:
     void mkFlag(char shortName, const std::string & name,
         const std::string & description, bool * dest)
     {
-        mkFlag(0, name, description, dest, true);
+        mkFlag(shortName, name, description, dest, true);
     }
 
     void mkFlag(char shortName, const std::string & longName,