diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-06-07 23:24:56 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-06-07 23:24:56 +0000 |
commit | 4fdcd8d43e97dbfbd0e3045b5675f323eb5dd916 (patch) | |
tree | 73796964951574dc7d88217adb59629c5c26d7f5 /hw/mcf_fec.c | |
parent | 29b3a6627e57585a156fb753c7781b4b1646a934 (diff) |
Fix return type.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2960 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/mcf_fec.c')
-rw-r--r-- | hw/mcf_fec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mcf_fec.c b/hw/mcf_fec.c index 3787c23ae3..d4613dda2c 100644 --- a/hw/mcf_fec.c +++ b/hw/mcf_fec.c @@ -188,7 +188,7 @@ static void mcf_fec_do_tx(mcf_fec_state *s) s->tx_descriptor = addr; } -static int mcf_fec_enable_rx(mcf_fec_state *s) +static void mcf_fec_enable_rx(mcf_fec_state *s) { mcf_fec_bd bd; |