Add missing newlines to Bus DPRINTFs.

This commit is contained in:
Steve Reinhardt
2008-07-15 14:38:51 -04:00
parent f9a597ddf3
commit 6262e0d909

View 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;
}