Module Name:    src
Committed By:   kiyohara
Date:           Sun Apr  7 07:42:20 UTC 2013

Modified Files:
        src/sys/dev/ieee1394: fwohci.c

Log Message:
Add '\n' to tail of printing string.


To generate a diff of this commit:
cvs rdiff -u -r1.133 -r1.134 src/sys/dev/ieee1394/fwohci.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ieee1394/fwohci.c
diff -u src/sys/dev/ieee1394/fwohci.c:1.133 src/sys/dev/ieee1394/fwohci.c:1.134
--- src/sys/dev/ieee1394/fwohci.c:1.133	Sat Aug  4 03:55:43 2012
+++ src/sys/dev/ieee1394/fwohci.c	Sun Apr  7 07:42:20 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: fwohci.c,v 1.133 2012/08/04 03:55:43 riastradh Exp $	*/
+/*	$NetBSD: fwohci.c,v 1.134 2013/04/07 07:42:20 kiyohara Exp $	*/
 
 /*-
  * Copyright (c) 2003 Hidetoshi Shimokawa
@@ -37,7 +37,7 @@
  *
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.133 2012/08/04 03:55:43 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: fwohci.c,v 1.134 2013/04/07 07:42:20 kiyohara Exp $");
 
 #include <sys/param.h>
 #include <sys/atomic.h>
@@ -448,7 +448,7 @@ fwohci_attach(struct fwohci_softc *sc)
 	sc->fc.config_rom = fwdma_alloc_setup(sc->fc.dev, sc->fc.dmat,
 	    CROMSIZE, &sc->crom_dma, CROMSIZE, BUS_DMA_NOWAIT);
 	if (sc->fc.config_rom == NULL) {
-		aprint_error_dev(sc->fc.dev, "config_rom alloc failed.");
+		aprint_error_dev(sc->fc.dev, "config_rom alloc failed.\n");
 		return ENOMEM;
 	}
 

Reply via email to