git: e56c8996fc43 - main - sound: Add missing space in dev.pcm.X.mode description
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 28 Apr 2024 19:49:07 UTC
The branch main has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=e56c8996fc437488686e7cdef18258f16c5ea74e
commit e56c8996fc437488686e7cdef18258f16c5ea74e
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2024-04-28 19:47:11 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2024-04-28 19:48:24 +0000
sound: Add missing space in dev.pcm.X.mode description
Sponsored by: The FreeBSD Foundation
MFC after: 1 day
Reviewed by: markj, emaste
Differential Revision: https://reviews.freebsd.org/D44990
---
sys/dev/sound/pcm/sound.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/sound/pcm/sound.c b/sys/dev/sound/pcm/sound.c
index 029326dfc05a..9d5eaf3f5ad7 100644
--- a/sys/dev/sound/pcm/sound.c
+++ b/sys/dev/sound/pcm/sound.c
@@ -833,8 +833,8 @@ pcm_sysinit(device_t dev)
SYSCTL_ADD_UINT(device_get_sysctl_ctx(dev),
SYSCTL_CHILDREN(device_get_sysctl_tree(dev)),
OID_AUTO, "mode", CTLFLAG_RD, NULL, mode,
- "mode (1=mixer, 2=play, 4=rec. The values are OR'ed if more than one"
- "mode is supported)");
+ "mode (1=mixer, 2=play, 4=rec. The values are OR'ed if more than "
+ "one mode is supported)");
if (d->flags & SD_F_AUTOVCHAN)
vchan_initsys(dev);
if (d->flags & SD_F_EQ)