projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f9a597d
)
Add missing newlines to Bus DPRINTFs.
author
Steve Reinhardt
<stever@gmail.com>
Tue, 15 Jul 2008 18:38:51 +0000
(14:38 -0400)
committer
Steve Reinhardt
<stever@gmail.com>
Tue, 15 Jul 2008 18:38:51 +0000
(14:38 -0400)
src/mem/bus.cc
patch
|
blob
|
history
diff --git
a/src/mem/bus.cc
b/src/mem/bus.cc
index 606402a1eb1ae182d28dc295c63ff45e489f10fa..41e9f0ac96681d522a139a2f21cc86147e9d5222 100644
(file)
--- 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;
}