mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Put newlines after log messages.
Submitted by: seki@sysrap.cs.fujitsu.co.jp PR#2563 (but the patch didn't apply)
This commit is contained in:
parent
427910f0e2
commit
6a4c899092
2 changed files with 6 additions and 6 deletions
|
|
@ -769,7 +769,7 @@ fe_probe_fmv ( DEVICE * dev, struct fe_softc * sc )
|
|||
return 0;
|
||||
#else
|
||||
/* Just log the fact and see what happens... FIXME. */
|
||||
log( LOG_WARNING, "fe%d: strange I/O config?n", sc->sc_unit );
|
||||
log( LOG_WARNING, "fe%d: strange I/O config?\n", sc->sc_unit );
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
@ -857,7 +857,7 @@ fe_probe_fmv ( DEVICE * dev, struct fe_softc * sc )
|
|||
} else if ( dev->id_irq != irqmap[ n ] ) {
|
||||
/* Don't match. */
|
||||
log( LOG_WARNING,
|
||||
"fe%d: check IRQ in config; it may be incorrect",
|
||||
"fe%d: check IRQ in config; it may be incorrect\n",
|
||||
sc->sc_unit );
|
||||
}
|
||||
|
||||
|
|
@ -2112,7 +2112,7 @@ fe_emptybuffer ( struct fe_softc * sc )
|
|||
u_char saved_dlcr5;
|
||||
|
||||
#if FE_DEBUG >= 2
|
||||
log( LOG_WARNING, "fe%d: emptying receive buffer", sc->sc_unit );
|
||||
log( LOG_WARNING, "fe%d: emptying receive buffer\n", sc->sc_unit );
|
||||
#endif
|
||||
/*
|
||||
* Stop receiving packets, temporarily.
|
||||
|
|
|
|||
|
|
@ -769,7 +769,7 @@ fe_probe_fmv ( DEVICE * dev, struct fe_softc * sc )
|
|||
return 0;
|
||||
#else
|
||||
/* Just log the fact and see what happens... FIXME. */
|
||||
log( LOG_WARNING, "fe%d: strange I/O config?n", sc->sc_unit );
|
||||
log( LOG_WARNING, "fe%d: strange I/O config?\n", sc->sc_unit );
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
@ -857,7 +857,7 @@ fe_probe_fmv ( DEVICE * dev, struct fe_softc * sc )
|
|||
} else if ( dev->id_irq != irqmap[ n ] ) {
|
||||
/* Don't match. */
|
||||
log( LOG_WARNING,
|
||||
"fe%d: check IRQ in config; it may be incorrect",
|
||||
"fe%d: check IRQ in config; it may be incorrect\n",
|
||||
sc->sc_unit );
|
||||
}
|
||||
|
||||
|
|
@ -2112,7 +2112,7 @@ fe_emptybuffer ( struct fe_softc * sc )
|
|||
u_char saved_dlcr5;
|
||||
|
||||
#if FE_DEBUG >= 2
|
||||
log( LOG_WARNING, "fe%d: emptying receive buffer", sc->sc_unit );
|
||||
log( LOG_WARNING, "fe%d: emptying receive buffer\n", sc->sc_unit );
|
||||
#endif
|
||||
/*
|
||||
* Stop receiving packets, temporarily.
|
||||
|
|
|
|||
Loading…
Reference in a new issue