Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/dev/audio Add missing newline.
details: https://anonhg.NetBSD.org/src/rev/d818b27235f1
branches: trunk
changeset: 957863:d818b27235f1
user: isaki <isaki%NetBSD.org@localhost>
date: Sun Dec 13 05:21:12 2020 +0000
description:
Add missing newline.
diffstat:
sys/dev/audio/audio.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diffs (28 lines):
diff -r 173316d85b25 -r d818b27235f1 sys/dev/audio/audio.c
--- a/sys/dev/audio/audio.c Sun Dec 13 05:13:38 2020 +0000
+++ b/sys/dev/audio/audio.c Sun Dec 13 05:21:12 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: audio.c,v 1.81 2020/12/09 04:30:39 isaki Exp $ */
+/* $NetBSD: audio.c,v 1.82 2020/12/13 05:21:12 isaki Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -138,7 +138,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.81 2020/12/09 04:30:39 isaki Exp $");
+__KERNEL_RCSID(0, "$NetBSD: audio.c,v 1.82 2020/12/13 05:21:12 isaki Exp $");
#ifdef _KERNEL_OPT
#include "audio.h"
@@ -2424,7 +2424,8 @@
if (error == EWOULDBLOCK) {
mutex_exit(sc->sc_lock);
device_printf(sc->sc_dev,
- "%s: cv_timedwait_sig failed %d", __func__, error);
+ "%s: cv_timedwait_sig failed %d\n",
+ __func__, error);
return error;
}
}
Home |
Main Index |
Thread Index |
Old Index