summaryrefslogtreecommitdiffstats
path: root/sys/dev/sf
diff options
context:
space:
mode:
authorticso <ticso@FreeBSD.org>2002-09-09 17:39:48 +0000
committerticso <ticso@FreeBSD.org>2002-09-09 17:39:48 +0000
commitca81a711284366951f9977ce2d5d7b75192cd533 (patch)
treea000c66eec6d55619a1e82032e15943f65ca200c /sys/dev/sf
parent990d7cf43ea7779fe8dfd09f49b1bab42b11b286 (diff)
downloadFreeBSD-src-ca81a711284366951f9977ce2d5d7b75192cd533.zip
FreeBSD-src-ca81a711284366951f9977ce2d5d7b75192cd533.tar.gz
add missing \n to printf
Approved by: gallatin (mentor)
Diffstat (limited to 'sys/dev/sf')
-rw-r--r--sys/dev/sf/if_sf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c
index 358507c..f5df991 100644
--- a/sys/dev/sf/if_sf.c
+++ b/sys/dev/sf/if_sf.c
@@ -1316,7 +1316,7 @@ sf_encap(sc, c, m_head)
MGETHDR(m_new, M_DONTWAIT, MT_DATA);
if (m_new == NULL) {
- printf("sf%d: no memory for tx list", sc->sf_unit);
+ printf("sf%d: no memory for tx list\n", sc->sf_unit);
return(1);
}
@@ -1324,7 +1324,7 @@ sf_encap(sc, c, m_head)
MCLGET(m_new, M_DONTWAIT);
if (!(m_new->m_flags & M_EXT)) {
m_freem(m_new);
- printf("sf%d: no memory for tx list",
+ printf("sf%d: no memory for tx list\n",
sc->sf_unit);
return(1);
}
OpenPOWER on IntegriCloud