From: Lisa Hsu Date: Wed, 9 Mar 2005 16:04:19 +0000 (-0500) Subject: fix typo in the fixed etherlink serialization. X-Git-Tag: m5_1.0_tutorial~79^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=21946f071026d3b3c4122ef41d755f883e22e668;p=gem5.git fix typo in the fixed etherlink serialization. dev/etherlink.cc: fix type in serialization. --HG-- extra : convert_revision : 87f47db14b90f414fef9a0db869da4d7ef72216a --- diff --git a/dev/etherlink.cc b/dev/etherlink.cc index 94293815d..81cdbc20f 100644 --- a/dev/etherlink.cc +++ b/dev/etherlink.cc @@ -178,7 +178,7 @@ EtherLink::Link::serialize(const string &base, ostream &os) packet->serialize(base + ".packet", os); bool event_scheduled = doneEvent.scheduled(); - paramOut(os, base + ".event_scheuled", event_scheduled); + paramOut(os, base + ".event_scheduled", event_scheduled); if (event_scheduled) { Tick event_time = doneEvent.when(); paramOut(os, base + ".event_time", event_time);