summaryrefslogtreecommitdiffstats
path: root/sys/pci/if_sf.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/pci/if_sf.c')
-rw-r--r--sys/pci/if_sf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pci/if_sf.c b/sys/pci/if_sf.c
index 358507c..f5df991 100644
--- a/sys/pci/if_sf.c
+++ b/sys/pci/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