diff options
Diffstat (limited to 'cmds/lshal/DebugCommand.cpp')
-rw-r--r-- | cmds/lshal/DebugCommand.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmds/lshal/DebugCommand.cpp b/cmds/lshal/DebugCommand.cpp index af22ac9b3d..72958bd2a9 100644 --- a/cmds/lshal/DebugCommand.cpp +++ b/cmds/lshal/DebugCommand.cpp @@ -39,7 +39,7 @@ Status DebugCommand::parseArgs(const Arg &arg) { // Optargs cannnot be used because the flag should not be considered set // if it should really be contained in mOptions. if (std::string(arg.argv[optind]) == "-E") { - mExcludesParentInstances = true; + mParentDebugInfoLevel = ParentDebugInfoLevel::NOTHING; optind++; } @@ -67,7 +67,7 @@ Status DebugCommand::main(const Arg &arg) { return mLshal.emitDebugInfo( pair.first, pair.second.empty() ? "default" : pair.second, mOptions, - mExcludesParentInstances, + mParentDebugInfoLevel, mLshal.out().buf(), mLshal.err()); } |