diff options
Diffstat (limited to 'src/mem/tport.cc')
-rw-r--r-- | src/mem/tport.cc | 2 |
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) { |