diff options
author | 2020-06-10 14:26:28 -0700 | |
---|---|---|
committer | 2020-06-11 05:16:15 -0700 | |
commit | e0fbd487f944ec82fdb6de74cdf7ce796eeea109 (patch) | |
tree | fa9811482bc884d5067acb776a064e5c675c47de /cmds/dumpstate/main.cpp | |
parent | ce1cb8c69d956bd5cf9214a3fe72095106bc83ed (diff) |
Revert "arc: Implement smaller dumpstate output"
This reverts commit f56bbb2bc0d65190bdb660ab359eb4697e928245.
Bug: 142684959
Bug: 136273873
Test: atest dumpstate_test
Change-Id: I9c5c007c2f630f06225e5e2b6229c1f3473f181f
Diffstat (limited to 'cmds/dumpstate/main.cpp')
-rw-r--r-- | cmds/dumpstate/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/dumpstate/main.cpp b/cmds/dumpstate/main.cpp index f1342a5b53..68d373377c 100644 --- a/cmds/dumpstate/main.cpp +++ b/cmds/dumpstate/main.cpp @@ -30,7 +30,7 @@ bool ShouldStartServiceAndWait(int argc, char* argv[]) { bool do_wait = false; int c; // Keep flags in sync with Dumpstate::DumpOptions::Initialize. - while ((c = getopt(argc, argv, "dho:svqzpAPBRSV:w")) != -1 && !do_wait) { + while ((c = getopt(argc, argv, "wdho:svqzpPBRSV:")) != -1 && !do_wait) { switch (c) { case 'w': do_wait = true; |