summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam A. Kennington III <wak@google.com>2018-02-25 19:54:59 -0800
committerWilliam A. Kennington III <wak@google.com>2018-02-25 19:57:17 -0800
commit12926435b6f4880cb178d1d43295f7638a603ab8 (patch)
tree184e5c2786a162dd804e27a865ca68b6ad9314ae
parent7df4b5dc9cd445a95131b5aae5f0d059883da5e3 (diff)
downloadphosphor-watchdog-12926435b6f4880cb178d1d43295f7638a603ab8.tar.gz
phosphor-watchdog-12926435b6f4880cb178d1d43295f7638a603ab8.zip
argument: Fix alignment of help text
When printed on the terminal the description of the command line options is supposed to be aligned for all options. The --action_target argument is currently not aligned with any of the other arguments. Fix this. Change-Id: I170d445a5e490c5d6e99379b8b704992a51fca3c Signed-off-by: William A. Kennington III <wak@google.com>
-rw-r--r--argument.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/argument.cpp b/argument.cpp
index 89c1008..d212261 100644
--- a/argument.cpp
+++ b/argument.cpp
@@ -91,19 +91,19 @@ void ArgumentParser::usage(char * const argv[])
{
std::cerr << "Usage: " << argv[0] << " options\n";
std::cerr << "Options:\n";
- std::cerr << " --help Print this menu\n";
- std::cerr << " --path=<Dbus Object path> Dbus Object path. "
+ std::cerr << " --help Print this menu\n";
+ std::cerr << " --path=<Dbus Object path> Dbus Object path. "
"Ex: /xyz/openbmc_project/state/watchdog/host0\n";
- std::cerr << " --service=<Dbus Service name> Dbus Service name. "
- "Ex: xyz.openbmc_project.State.Watchdog.Host\n";
- std::cerr << " [--target=<systemd unit>] Systemd unit to be called "
- "on timeout for all actions but NONE. Deprecated, use "
- "--action_target instead.\n";
+ std::cerr << " --service=<Dbus Service name> Dbus Service "
+ "name. Ex: xyz.openbmc_project.State.Watchdog.Host\n";
+ std::cerr << " [--target=<systemd unit>] Systemd unit to "
+ "be called on timeout for all actions but NONE. "
+ "Deprecated, use --action_target instead.\n";
std::cerr << " [--action_target=<action>=<systemd unit>] Map of action to "
"systemd unit to be called on timeout if that action is "
"set for ExpireAction when the timer expires.\n";
- std::cerr << " [--continue] Continue daemon after "
- "watchdog timeout.\n";
+ std::cerr << " [--continue] Continue daemon "
+ "after watchdog timeout.\n";
}
} // namespace watchdog
} // namespace phosphor
OpenPOWER on IntegriCloud