diff options
author | alex <alex@FreeBSD.org> | 1999-04-15 00:13:20 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 1999-04-15 00:13:20 +0000 |
commit | e706a82c192e3be9bfb4bc85ca69988a212e2cf6 (patch) | |
tree | 26494c441debd63cdebcf88b1bebb5f7838158cd /sys/dev/cy | |
parent | d2b0829c4c7f559e295922938bb820e9fa07da49 (diff) | |
download | FreeBSD-src-e706a82c192e3be9bfb4bc85ca69988a212e2cf6.zip FreeBSD-src-e706a82c192e3be9bfb4bc85ca69988a212e2cf6.tar.gz |
Added missing newline to "no ports found!" message.
Diffstat (limited to 'sys/dev/cy')
-rw-r--r-- | sys/dev/cy/cy_pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/cy/cy_pci.c b/sys/dev/cy/cy_pci.c index 7113155..46a4f52 100644 --- a/sys/dev/cy/cy_pci.c +++ b/sys/dev/cy/cy_pci.c @@ -24,7 +24,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: cy_pci.c,v 1.9 1999/01/11 23:43:54 bde Exp $ + * $Id: cy_pci.c,v 1.10 1999/01/15 10:00:12 bde Exp $ */ /* @@ -102,7 +102,7 @@ cy_attach(config_id, unit) /* * No ports found. Release resources and punt. */ - printf("cy%d: no ports found!", unit); + printf("cy%d: no ports found!\n", unit); goto fail; } |