summaryrefslogtreecommitdiff
path: root/src/mem
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@gmail.com>2008-07-15 14:38:51 -0400
committerSteve Reinhardt <stever@gmail.com>2008-07-15 14:38:51 -0400
commit6262e0d9095215effc8d73297f3eedfddc1c2796 (patch)
tree341d4adc985bd2b2b5ab5cbedd7ae00574cff274 /src/mem
parentf9a597ddf307246b1aee915b59de503d2850ccce (diff)
downloadgem5-6262e0d9095215effc8d73297f3eedfddc1c2796.tar.xz
Add missing newlines to Bus DPRINTFs.
Diffstat (limited to 'src/mem')
-rw-r--r--src/mem/bus.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mem/bus.cc b/src/mem/bus.cc
index 606402a1e..41e9f0ac9 100644
--- a/src/mem/bus.cc
+++ b/src/mem/bus.cc
@@ -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;
}