Module Name:    src
Committed By:   isaki
Date:           Mon Jun 10 13:28:09 UTC 2019

Modified Files:
        src/sys/dev/audio: audio.c

Log Message:
Add missing newline to some error messages.


To generate a diff of this commit:
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/audio/audio.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/audio/audio.c
diff -u src/sys/dev/audio/audio.c:1.14 src/sys/dev/audio/audio.c:1.15
--- src/sys/dev/audio/audio.c:1.14	Mon Jun 10 13:12:51 2019
+++ src/sys/dev/audio/audio.c	Mon Jun 10 13:28:08 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: audio.c,v 1.14 2019/06/10 13:12:51 isaki Exp $	*/
+/*	$NetBSD: audio.c,v 1.15 2019/06/10 13:28:08 isaki Exp $	*/
 
 /*-
  * Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -142,7 +142,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.14 2019/06/10 13:12:51 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.15 2019/06/10 13:28:08 isaki Exp $");
 
 #ifdef _KERNEL_OPT
 #include "audio.h"
@@ -5205,7 +5205,7 @@ audio_pmixer_output(struct audio_softc *
 			    start, end, blksize, audio_pintr, sc, &params);
 			if (error) {
 				device_printf(sc->sc_dev,
-				    "trigger_output failed with %d", error);
+				    "trigger_output failed with %d\n", error);
 				return;
 			}
 		}
@@ -5217,7 +5217,7 @@ audio_pmixer_output(struct audio_softc *
 		    start, blksize, audio_pintr, sc);
 		if (error) {
 			device_printf(sc->sc_dev,
-			    "start_output failed with %d", error);
+			    "start_output failed with %d\n", error);
 			return;
 		}
 	}
@@ -5476,7 +5476,7 @@ audio_rmixer_input(struct audio_softc *s
 			    start, end, blksize, audio_rintr, sc, &params);
 			if (error) {
 				device_printf(sc->sc_dev,
-				    "trigger_input failed with %d", error);
+				    "trigger_input failed with %d\n", error);
 				return;
 			}
 		}
@@ -5488,7 +5488,7 @@ audio_rmixer_input(struct audio_softc *s
 		    start, blksize, audio_rintr, sc);
 		if (error) {
 			device_printf(sc->sc_dev,
-			    "start_input failed with %d", error);
+			    "start_input failed with %d\n", error);
 			return;
 		}
 	}

Reply via email to