Skip to content

Commit e02b9f1

Browse files
committed
flip flag, fix msg
1 parent 82e0ee5 commit e02b9f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Commands/CommandObjectTarget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3478,7 +3478,7 @@ class CommandObjectTargetModulesShowUnwind : public CommandObjectParsed {
34783478
m_cached = value;
34793479
} else {
34803480
return Status::FromErrorStringWithFormatv(
3481-
"invalid boolean value '%s' passed for -G option", option_arg);
3481+
"invalid boolean value '%s' passed for -c option", option_arg);
34823482
}
34833483
break;
34843484

@@ -3506,7 +3506,7 @@ class CommandObjectTargetModulesShowUnwind : public CommandObjectParsed {
35063506
// parsing options
35073507
std::string m_str; // Holds name lookup
35083508
lldb::addr_t m_addr = LLDB_INVALID_ADDRESS; // Holds the address to lookup
3509-
bool m_cached = false;
3509+
bool m_cached = true;
35103510
};
35113511

35123512
CommandObjectTargetModulesShowUnwind(CommandInterpreter &interpreter)

0 commit comments

Comments
 (0)