diff options
author | wpaul <wpaul@FreeBSD.org> | 1998-08-20 14:48:58 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1998-08-20 14:48:58 +0000 |
commit | e4bdd1856a706ddcc640cf6bbf86a3e2395dceac (patch) | |
tree | 8b3372703a0df61c8221f0c1aa3bf41ed1eaf5a3 /sys/pci | |
parent | 82dd2415b5d115e2f2d88c58f00538430eb3694d (diff) | |
download | FreeBSD-src-e4bdd1856a706ddcc640cf6bbf86a3e2395dceac.zip FreeBSD-src-e4bdd1856a706ddcc640cf6bbf86a3e2395dceac.tar.gz |
Fix small printf() bogon (forgot newline, and the message was longer that
80 cols).
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/if_xl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/pci/if_xl.c b/sys/pci/if_xl.c index ba3f1b7..43847d7 100644 --- a/sys/pci/if_xl.c +++ b/sys/pci/if_xl.c @@ -29,7 +29,7 @@ * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF * THE POSSIBILITY OF SUCH DAMAGE. * - * $Id: if_xl.c,v 1.40 1998/08/19 14:51:19 wpaul Exp $ + * $Id: if_xl.c,v 1.41 1998/08/20 14:32:40 wpaul Exp $ */ /* @@ -124,7 +124,7 @@ #ifndef lint static char rcsid[] = - "$Id: if_xl.c,v 1.40 1998/08/19 14:51:19 wpaul Exp $"; + "$Id: if_xl.c,v 1.41 1998/08/20 14:32:40 wpaul Exp $"; #endif /* @@ -1177,8 +1177,8 @@ static void xl_mediacheck(sc) "the media options register!!\n", sc->xl_unit); printf("xl%d: this could be a manufacturing defect in " "your adapter or system\n", sc->xl_unit); - printf("xl%d: will attempt to guess the media type; you " - "should probably consult your vendor", sc->xl_unit); + printf("xl%d: attempting to guess media type; you " + "should probably consult your vendor\n", sc->xl_unit); /* * Read the device ID from the EEPROM. |