diff options
author | 2008-12-30 12:27:57 +0000 | |
---|---|---|
committer | 2008-12-30 12:27:57 +0000 | |
commit | d22d92bcaa5ff798a636bb675aa75cea05c894bd (patch) | |
tree | 0318de214f4b2e62a73cb341da634c63fbb6ab81 | |
parent | - if widget X will be named for widget Y and widget Y is disabled, (diff) | |
download | wireguard-openbsd-d22d92bcaa5ff798a636bb675aa75cea05c894bd.tar.xz wireguard-openbsd-d22d92bcaa5ff798a636bb675aa75cea05c894bd.zip |
Add missing newline to error message printf.
Thanks to Alexey Suslikov
-rw-r--r-- | sys/dev/pci/if_vic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_vic.c b/sys/dev/pci/if_vic.c index 3e0de3edf01..6281c6260c9 100644 --- a/sys/dev/pci/if_vic.c +++ b/sys/dev/pci/if_vic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vic.c,v 1.68 2008/12/12 06:12:34 dlg Exp $ */ +/* $OpenBSD: if_vic.c,v 1.69 2008/12/30 12:27:57 reyk Exp $ */ /* * Copyright (c) 2006 Reyk Floeter <reyk@openbsd.org> @@ -1350,7 +1350,7 @@ vic_alloc_mbuf(struct vic_softc *sc, bus_dmamap_t map, u_int pktlen) m->m_len = m->m_pkthdr.len = pktlen - ETHER_ALIGN; if (bus_dmamap_load_mbuf(sc->sc_dmat, map, m, BUS_DMA_NOWAIT) != 0) { - printf("%s: could not load mbuf DMA map", DEVNAME(sc)); + printf("%s: could not load mbuf DMA map\n", DEVNAME(sc)); m_freem(m); return (NULL); } |