diff options
author | Gleydson Soares <gsoares@cvs.openbsd.org> | 2012-11-27 18:08:22 +0000 |
---|---|---|
committer | Gleydson Soares <gsoares@cvs.openbsd.org> | 2012-11-27 18:08:22 +0000 |
commit | 730481217dc73fdcd0a27476785cf79301397be7 (patch) | |
tree | 9e0e270575f0bf9a5fedf87819e7a74cf1be551e /sys/dev/pci/if_oce.c | |
parent | 4ce4a3d78f15bc213ebe455a7c1418ae98dc0941 (diff) |
fix format string; OK mikeb@
Diffstat (limited to 'sys/dev/pci/if_oce.c')
-rw-r--r-- | sys/dev/pci/if_oce.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/pci/if_oce.c b/sys/dev/pci/if_oce.c index c8e7e72522b..a6aeef691dc 100644 --- a/sys/dev/pci/if_oce.c +++ b/sys/dev/pci/if_oce.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_oce.c,v 1.66 2012/11/26 19:03:59 mikeb Exp $ */ +/* $OpenBSD: if_oce.c,v 1.67 2012/11/27 18:08:21 gsoares Exp $ */ /* * Copyright (c) 2012 Mike Belopuhov @@ -1740,7 +1740,8 @@ oce_init_lro(struct oce_softc *sc) lro = &sc->sc_rq[i]->lro; rc = tcp_lro_init(lro); if (rc != 0) { - printf("%s: LRO init failed\n"); + printf("%s: LRO init failed\n", + sc->sc_dev.dv_xname); return rc; } lro->ifp = &sc->sc_ac.ac_if; |