diff options
author | Caroline Tice <ctice@apple.com> | 2010-09-09 06:25:08 +0000 |
---|---|---|
committer | Caroline Tice <ctice@apple.com> | 2010-09-09 06:25:08 +0000 |
commit | 101c7c2060354f6e91efc65f9c4ea9f13a591152 (patch) | |
tree | d8423df9d08dfc78cd1615f317468f5ff70c9e76 /lldb/source/Commands/CommandObjectImage.cpp | |
parent | 4adbaf184340a71925eea83a2811c4763e281f38 (diff) | |
download | bcm5719-llvm-101c7c2060354f6e91efc65f9c4ea9f13a591152.tar.gz bcm5719-llvm-101c7c2060354f6e91efc65f9c4ea9f13a591152.zip |
Make all debugger-level user settable variables into instance variables.
Make get/set variable at the debugger level always set the particular debugger's instance variables rather than
the default variables.
llvm-svn: 113474
Diffstat (limited to 'lldb/source/Commands/CommandObjectImage.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectImage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectImage.cpp b/lldb/source/Commands/CommandObjectImage.cpp index ec99ff74584..583c39c5843 100644 --- a/lldb/source/Commands/CommandObjectImage.cpp +++ b/lldb/source/Commands/CommandObjectImage.cpp @@ -1424,7 +1424,7 @@ public: break; default: - m_options.GenerateOptionUsage (result.GetErrorStream(), this); + m_options.GenerateOptionUsage (result.GetErrorStream(), this, interpreter.GetDebugger().GetInstanceName().AsCString()); syntax_error = true; break; } |