LookupAddressInModule: Remove a couple of the extra
newlines output at the end of 'image lookup' / 'image lookup -v'.
git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@140357 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectTarget.cpp b/source/Commands/CommandObjectTarget.cpp
index 9954954..8c07eb3 100644
--- a/source/Commands/CommandObjectTarget.cpp
+++ b/source/Commands/CommandObjectTarget.cpp
@@ -1337,12 +1337,10 @@
strm.SetIndentLevel (save_indent + 11);
so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
strm.SetIndentLevel (save_indent);
- strm.EOL();
// Print out detailed address information when verbose is enabled
if (verbose)
{
- if (so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext))
- strm.EOL();
+ so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
}
strm.IndentLess();
return true;