diff options
author | 2019-03-29 17:25:44 +0000 | |
---|---|---|
committer | 2019-03-29 17:25:44 +0000 | |
commit | 053395f54bd33183d36ca4efbf7cb904677ac86c (patch) | |
tree | 81df813feaf534eaaab0cb62023fcc8c75896498 | |
parent | document that these drivers do not support powersave; two other pages (acu and zyd) (diff) | |
download | wireguard-openbsd-053395f54bd33183d36ca4efbf7cb904677ac86c.tar.xz wireguard-openbsd-053395f54bd33183d36ca4efbf7cb904677ac86c.zip |
typo in printf; leo_tck at volny cz
-rw-r--r-- | sys/dev/pci/if_jme.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_jme.c b/sys/dev/pci/if_jme.c index 0802298e04d..a47b2172d8c 100644 --- a/sys/dev/pci/if_jme.c +++ b/sys/dev/pci/if_jme.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_jme.c,v 1.50 2017/09/08 05:36:52 deraadt Exp $ */ +/* $OpenBSD: if_jme.c,v 1.51 2019/03/29 17:25:44 sthen Exp $ */ /*- * Copyright (c) 2008, Pyun YongHyeon <yongari@FreeBSD.org> * All rights reserved. @@ -1738,7 +1738,7 @@ jme_rxeof(struct jme_softc *sc) pktlen = JME_RX_BYTES(letoh32(desc->buflen)); if (nsegs != howmany(pktlen, MCLBYTES)) { printf("%s: RX fragment count(%d) " - "and packet size(%d) mismach\n", + "and packet size(%d) mismatch\n", sc->sc_dev.dv_xname, nsegs, pktlen); break; } |