diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-10-29 03:19:43 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2015-10-29 03:19:43 +0000 |
commit | 3947ee688f31c3976225875f2625ca74a648623c (patch) | |
tree | 42f65efbb8b0c01bd95fd08798b5a54513972ba3 /sys/dev | |
parent | adab143371b93259d52e71457cb7e57e43f46875 (diff) |
fix newlines on an error message
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_em.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_em.c b/sys/dev/pci/if_em.c index 8a68db87996..f8d4b7d064e 100644 --- a/sys/dev/pci/if_em.c +++ b/sys/dev/pci/if_em.c @@ -31,7 +31,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ -/* $OpenBSD: if_em.c,v 1.309 2015/10/25 13:04:28 mpi Exp $ */ +/* $OpenBSD: if_em.c,v 1.310 2015/10/29 03:19:42 jsg Exp $ */ /* $FreeBSD: if_em.c,v 1.46 2004/09/29 18:28:28 mlaier Exp $ */ #include <dev/pci/if_em.h> @@ -1840,7 +1840,7 @@ em_hardware_init(struct em_softc *sc) INIT_DEBUGOUT("\nHardware Initialization Deferred "); return (EAGAIN); } - printf("%s: Hardware Initialization Failed", + printf("\n%s: Hardware Initialization Failed\n", sc->sc_dv.dv_xname); return (EIO); } |