mem: Fix MSHR print format
This patch fixes an incorrect print format string by adding an additional string element.
This commit is contained in:
parent
4d7d8393ed
commit
42191522cc
1 changed files with 1 additions and 1 deletions
2
src/mem/cache/mshr.cc
vendored
2
src/mem/cache/mshr.cc
vendored
|
@ -462,7 +462,7 @@ MSHR::checkFunctional(PacketPtr pkt)
|
|||
void
|
||||
MSHR::print(std::ostream &os, int verbosity, const std::string &prefix) const
|
||||
{
|
||||
ccprintf(os, "%s[%x:%x] %s %s %s state: %s %s %s %s\n",
|
||||
ccprintf(os, "%s[%x:%x] %s %s %s state: %s %s %s %s %s\n",
|
||||
prefix, addr, addr+size-1,
|
||||
isForward ? "Forward" : "",
|
||||
isForwardNoResponse() ? "ForwNoResp" : "",
|
||||
|
|
Loading…
Reference in a new issue