diff options
author | Nathan Binkert <binkertn@umich.edu> | 2003-11-04 12:48:21 -0500 |
---|---|---|
committer | Nathan Binkert <binkertn@umich.edu> | 2003-11-04 12:48:21 -0500 |
commit | a7635fa6ef488b8e44b127c40ab2a6818620145e (patch) | |
tree | 4c674a11336299844bafffcfd5d5442a390c8614 /dev/etherlink.cc | |
parent | e4b52476bc00fe8c0115ee5ec6e9551447cb04a3 (diff) | |
download | gem5-a7635fa6ef488b8e44b127c40ab2a6818620145e.tar.xz |
fix type! argh
dev/etherlink.cc:
int -> Tick
--HG--
extra : convert_revision : 33c45ea306e6532b91d84018702b220b25de463e
Diffstat (limited to 'dev/etherlink.cc')
-rw-r--r-- | dev/etherlink.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/etherlink.cc b/dev/etherlink.cc index 6fb7187d2..c042cac34 100644 --- a/dev/etherlink.cc +++ b/dev/etherlink.cc @@ -125,7 +125,7 @@ BEGIN_DECLARE_SIM_OBJECT_PARAMS(EtherLink) SimObjectParam<EtherInt *> interface1; SimObjectParam<EtherInt *> interface2; - Param<int> link_speed; + Param<Tick> link_speed; SimObjectParam<EtherDump *> packet_dump; END_DECLARE_SIM_OBJECT_PARAMS(EtherLink) |