Skip to content

Commit 7f85299

Browse files
committed
LookupAddressInModule: Remove a couple of the extra
newlines output at the end of 'image lookup' / 'image lookup -v'. llvm-svn: 140357
1 parent 64a4bf1 commit 7f85299

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

lldb/source/Commands/CommandObjectTarget.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1337,12 +1337,10 @@ LookupAddressInModule
13371337
strm.SetIndentLevel (save_indent + 11);
13381338
so_addr.Dump (&strm, exe_scope, Address::DumpStyleResolvedDescription);
13391339
strm.SetIndentLevel (save_indent);
1340-
strm.EOL();
13411340
// Print out detailed address information when verbose is enabled
13421341
if (verbose)
13431342
{
1344-
if (so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext))
1345-
strm.EOL();
1343+
so_addr.Dump (&strm, exe_scope, Address::DumpStyleDetailedSymbolContext);
13461344
}
13471345
strm.IndentLess();
13481346
return true;

0 commit comments

Comments
 (0)