diff options
author | Chris Cappuccio <chris@cvs.openbsd.org> | 2000-02-06 17:57:57 +0000 |
---|---|---|
committer | Chris Cappuccio <chris@cvs.openbsd.org> | 2000-02-06 17:57:57 +0000 |
commit | 6c5e87d3eb912c6f78899a23f96934612d204eed (patch) | |
tree | 2f5e9a21f1e2adbf7aea38a9702bc680d204a4ba | |
parent | 4314206c16c7626f0f959ae7d884793e2abb90b6 (diff) |
missing \n on printf
-rw-r--r-- | sys/dev/pci/if_lmc_media.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_lmc_media.c b/sys/dev/pci/if_lmc_media.c index 46b8bdd4120..1b1e252e2c8 100644 --- a/sys/dev/pci/if_lmc_media.c +++ b/sys/dev/pci/if_lmc_media.c @@ -1,5 +1,5 @@ -/* $OpenBSD: if_lmc_media.c,v 1.3 2000/02/01 18:01:41 chris Exp $ */ -/* $Id: if_lmc_media.c,v 1.3 2000/02/01 18:01:41 chris Exp $ */ +/* $OpenBSD: if_lmc_media.c,v 1.4 2000/02/06 17:57:56 chris Exp $ */ +/* $Id: if_lmc_media.c,v 1.4 2000/02/06 17:57:56 chris Exp $ */ /*- * Copyright (c) 1997-1999 LAN Media Corporation (LMC) @@ -1143,7 +1143,7 @@ lmc_t1_watchdog(lmc_softc_t * const sc) sc->lmc_red = 1; } else { if (sc->lmc_red == 1) - printf ("%s: Red Alarm ok", sc->lmc_xname); + printf ("%s: Red Alarm ok\n", sc->lmc_xname); lmc_led_off (sc, LMC_DS3_LED3); lmc_led_on (sc, LMC_DS3_LED2); sc->lmc_red = 0; |