diff options
| author | Bernd Walter <ticso@FreeBSD.org> | 2002-09-09 17:39:48 +0000 |
|---|---|---|
| committer | Bernd Walter <ticso@FreeBSD.org> | 2002-09-09 17:39:48 +0000 |
| commit | 82026026e086377b46d2010f861ceea21f8ed851 (patch) | |
| tree | a000c66eec6d55619a1e82032e15943f65ca200c /sys/dev/sf | |
| parent | c0f3990523402368d6cd285038ea41753063a850 (diff) | |
Notes
Diffstat (limited to 'sys/dev/sf')
| -rw-r--r-- | sys/dev/sf/if_sf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sf/if_sf.c b/sys/dev/sf/if_sf.c index 358507c4ab34..f5df9914ad7f 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); } |
