aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectFrame.cpp
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2011-08-10 10:51:24 +0000
committerJason Molenda <jmolenda@apple.com>2011-08-10 10:51:24 +0000
commita985d411bcaecb2e43c3926080bd58c2a4604fee (patch)
tree4d88c12c4918477c4d4e9f12c142edcaa93a7e5d /lldb/source/Commands/CommandObjectFrame.cpp
parent527bd079344a60668b97cc50f3c77ed55ca463ac (diff)
downloadllvm-a985d411bcaecb2e43c3926080bd58c2a4604fee.zip
llvm-a985d411bcaecb2e43c3926080bd58c2a4604fee.tar.gz
llvm-a985d411bcaecb2e43c3926080bd58c2a4604fee.tar.bz2
Remove extra newline from end of 'frame info' command output.
llvm-svn: 137208
Diffstat (limited to 'lldb/source/Commands/CommandObjectFrame.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectFrame.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectFrame.cpp b/lldb/source/Commands/CommandObjectFrame.cpp
index f0a061d..12b4b1b 100644
--- a/lldb/source/Commands/CommandObjectFrame.cpp
+++ b/lldb/source/Commands/CommandObjectFrame.cpp
@@ -73,7 +73,6 @@ public:
if (exe_ctx.frame)
{
exe_ctx.frame->DumpUsingSettingsFormat (&result.GetOutputStream());
- result.GetOutputStream().EOL();
result.SetStatus (eReturnStatusSuccessFinishResult);
}
else