summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2015-10-29 03:19:42 +0000
committerjsg <jsg@openbsd.org>2015-10-29 03:19:42 +0000
commit58701dc0919c5fee1f0f29466a3a75992a502d22 (patch)
tree33f8419ff6c169c9f8ffd84453dcf0c396769704
parentrdate is a classic "run as root, talk to internet for a while doing (diff)
downloadwireguard-openbsd-58701dc0919c5fee1f0f29466a3a75992a502d22.tar.xz
wireguard-openbsd-58701dc0919c5fee1f0f29466a3a75992a502d22.zip
fix newlines on an error message
-rw-r--r--sys/dev/pci/if_em.c4
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);
}