Add missing newlines to Bus DPRINTFs.
authorSteve Reinhardt <stever@gmail.com>
Tue, 15 Jul 2008 18:38:51 +0000 (14:38 -0400)
committerSteve Reinhardt <stever@gmail.com>
Tue, 15 Jul 2008 18:38:51 +0000 (14:38 -0400)
src/mem/bus.cc

index 606402a1eb1ae182d28dc295c63ff45e489f10fa..41e9f0ac96681d522a139a2f21cc86147e9d5222 100644 (file)
@@ -331,10 +331,10 @@ Bus::findPort(Addr addr)
 
         if (responderSet) {
             panic("Unable to find destination for addr (user set default "
-                  "responder): %#llx", addr);
+                  "responder): %#llx\n", addr);
         } else {
             DPRINTF(Bus, "Unable to find destination for addr: %#llx, will use "
-                    "default port", addr);
+                    "default port\n", addr);
 
             return defaultId;
         }