diff options
author | dd <dd@FreeBSD.org> | 2001-09-09 14:48:52 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-09-09 14:48:52 +0000 |
commit | 210985c3bd40b546f137e02930caf5cf3939212b (patch) | |
tree | 36daea3c13477b8d80999ba7eb1965ed459f1777 /sys/dev/sio/sio.c | |
parent | 45b45bccdfe26dad5a08555140173353d2190686 (diff) | |
download | FreeBSD-src-210985c3bd40b546f137e02930caf5cf3939212b.zip FreeBSD-src-210985c3bd40b546f137e02930caf5cf3939212b.tar.gz |
Add a missing newline to an error message.
PR: 30436
Submitted by: Joerg Lehners <Lehners@Informatik.Uni-Oldenburg.DE>
Diffstat (limited to 'sys/dev/sio/sio.c')
-rw-r--r-- | sys/dev/sio/sio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c index 88fb3f1..3c68d7c 100644 --- a/sys/dev/sio/sio.c +++ b/sys/dev/sio/sio.c @@ -1358,7 +1358,7 @@ determined_type: ; com->irqres, INTR_TYPE_TTY, siointr, com, &com->cookie); if (ret == 0) - device_printf(dev, "unable to activate interrupt in fast mode - using normal mode"); + device_printf(dev, "unable to activate interrupt in fast mode - using normal mode\n"); } if (ret) device_printf(dev, "could not activate interrupt\n"); |