From 955629d5776f10e2b6aa358bc995f8c1ec2e2be0 Mon Sep 17 00:00:00 2001 From: "William A. Kennington III" Date: Thu, 25 Jan 2018 17:33:12 -0800 Subject: argument: Fix flag typo Change-Id: I409db7d3e8042217312225ac642b312541c48981 Signed-off-by: William A. Kennington III --- argument.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/argument.cpp b/argument.cpp index 61c97ca..ee66e37 100644 --- a/argument.cpp +++ b/argument.cpp @@ -31,7 +31,7 @@ const std::string ArgumentParser::emptyString = ""s; const char* ArgumentParser::optionStr = "p:s:t:c:?h"; const option ArgumentParser::options[] = { - { "path", required_argument, nullptr, 'o' }, + { "path", required_argument, nullptr, 'p' }, { "service", required_argument, nullptr, 's' }, { "target", required_argument, nullptr, 't' }, { "continue", no_argument, nullptr, 'c' }, -- cgit v1.2.1