aboutsummaryrefslogtreecommitdiff
path: root/hw/smc91c111.c
diff options
context:
space:
mode:
Diffstat (limited to 'hw/smc91c111.c')
-rw-r--r--hw/smc91c111.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/smc91c111.c b/hw/smc91c111.c
index 214e92efc0..1ef5b56892 100644
--- a/hw/smc91c111.c
+++ b/hw/smc91c111.c
@@ -615,7 +615,7 @@ static void smc91c111_receive(void *opaque, const uint8_t *buf, int size)
if ((s->rcr & RCR_RXEN) == 0 || (s->rcr & RCR_SOFT_RST))
return;
- /* Short packets are padded with zeros. Recieveing a packet
+ /* Short packets are padded with zeros. Receiving a packet
< 64 bytes long is considered an error condition. */
if (size < 64)
packetsize = 64;