aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectHelp.cpp
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-10-28 23:30:28 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-10-28 23:30:28 +0000
commit8763780961ae37b46690e0ee66447847275a0040 (patch)
tree81dbb281eba0cad8bdd969e07896a381f4de734b /lldb/source/Commands/CommandObjectHelp.cpp
parent7c533b244730c5c8c2ff725e1a81a43df6394b62 (diff)
downloadllvm-8763780961ae37b46690e0ee66447847275a0040.zip
llvm-8763780961ae37b46690e0ee66447847275a0040.tar.gz
llvm-8763780961ae37b46690e0ee66447847275a0040.tar.bz2
Add an example customization directory which uses a binutils.py module to provide
commands to print the binary representaion of an integer. llvm-svn: 143252
Diffstat (limited to 'lldb/source/Commands/CommandObjectHelp.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectHelp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectHelp.cpp b/lldb/source/Commands/CommandObjectHelp.cpp
index e735c66..d3b9b0d 100644
--- a/lldb/source/Commands/CommandObjectHelp.cpp
+++ b/lldb/source/Commands/CommandObjectHelp.cpp
@@ -182,7 +182,7 @@ CommandObjectHelp::Execute (Args& command, CommandReturnObject &result)
const char *long_help = sub_cmd_obj->GetHelpLong();
if ((long_help != NULL)
&& (strlen (long_help) > 0))
- output_strm.Printf ("\n%s", long_help);
+ output_strm.Printf ("%s", long_help);
else if (sub_cmd_obj->WantsRawCommandString())
{
std::string help_text (sub_cmd_obj->GetHelp());