diff options
Diffstat (limited to 'src/mem/cache/write_queue_entry.cc')
-rw-r--r-- | src/mem/cache/write_queue_entry.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/cache/write_queue_entry.cc b/src/mem/cache/write_queue_entry.cc index e54fed7a4..283c4a862 100644 --- a/src/mem/cache/write_queue_entry.cc +++ b/src/mem/cache/write_queue_entry.cc @@ -132,7 +132,7 @@ WriteQueueEntry::checkFunctional(PacketPtr pkt) // entity. For other requests, we iterate over the individual // targets since that's where the actual data lies. if (pkt->isPrint()) { - pkt->checkFunctional(this, blkAddr, isSecure, blkSize, NULL); + pkt->checkFunctional(this, blkAddr, isSecure, blkSize, nullptr); return false; } else { return targets.checkFunctional(pkt); |