summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Yifan Hong <elsk@google.com> 2018-06-26 13:27:29 -0700
committer Yifan Hong <elsk@google.com> 2018-06-28 13:23:15 -0700
commitaa864577ff84d250ca854d87bc95b54472b843e1 (patch)
treeb02fa893b93a013437b46105c7b1a8d6bfcb920d
parent0a34c5799092c55879445150f3acc8dc9cd49c95 (diff)
lshal: fix help message
Default options are incorrect. Should be `lshal list -liepc`. Test: compare output of `lshal` and `lshal -liepc` Change-Id: Ia5fa7452c5e770793ad89cdd9c29ef20af462887
-rw-r--r--cmds/lshal/ListCommand.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/lshal/ListCommand.cpp b/cmds/lshal/ListCommand.cpp
index c0e1a35e20..c3131756fc 100644
--- a/cmds/lshal/ListCommand.cpp
+++ b/cmds/lshal/ListCommand.cpp
@@ -1068,7 +1068,7 @@ void ListCommand::usage() const {
err() << "list:" << std::endl
<< " lshal" << std::endl
<< " lshal list" << std::endl
- << " List all hals with default ordering and columns (`lshal list -riepc`)" << std::endl
+ << " List all hals with default ordering and columns (`lshal list -liepc`)" << std::endl
<< " lshal list [-h|--help]" << std::endl
<< " -h, --help: Print help message for list (`lshal help list`)" << std::endl
<< " lshal [list] [OPTIONS...]" << std::endl;