diff --git a/tools/llvm-db/Commands.cpp b/tools/llvm-db/Commands.cpp index 8e3125eaff0..de7fdf604b7 100644 --- a/tools/llvm-db/Commands.cpp +++ b/tools/llvm-db/Commands.cpp @@ -119,7 +119,8 @@ void CLIDebugger::printProgramLocation(bool PrintLocation) { CurrentFile = &FileDesc->getSourceText(); std::cout << " at " << CurrentFile->getFilename() << ":" << LineNo; - if (ColNo) std::cout << ":" << ColNo << "\n"; + if (ColNo) std::cout << ":" << ColNo; + std::cout << "\n"; } if (printSourceLine(LineNo))