summaryrefslogtreecommitdiff
path: root/src/mem
diff options
context:
space:
mode:
Diffstat (limited to 'src/mem')
-rw-r--r--src/mem/tport.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mem/tport.cc b/src/mem/tport.cc
index f937eeb32..e981a7445 100644
--- a/src/mem/tport.cc
+++ b/src/mem/tport.cc
@@ -108,7 +108,7 @@ void
SimpleTimingPort::schedSendTiming(PacketPtr pkt, Tick when)
{
assert(when > curTick);
- assert(when < curTick + Clock::Int::ms);
+ assert(when < curTick + SimClock::Int::ms);
// Nothing is on the list: add it and schedule an event
if (transmitList.empty() || when < transmitList.front().tick) {