Fix a bug that caused stuff like this:
main at ./eh.cpp:1414 ->          printf("a\n");

to be printed, instead of this:

main at ./eh.cpp:14
14 ->          printf("a\n");

llvm-svn: 18005
diff --git a/llvm/tools/llvm-db/Commands.cpp b/llvm/tools/llvm-db/Commands.cpp
index 8e3125e..de7fdf6 100644
--- a/llvm/tools/llvm-db/Commands.cpp
+++ b/llvm/tools/llvm-db/Commands.cpp
@@ -119,7 +119,8 @@
     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))