git: 2a2705a637cd - main - sound: Add missing newline in dsp_make_dev()'s device_printf()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 27 Jul 2026 15:52:57 UTC
The branch main has been updated by christos:
URL: https://cgit.FreeBSD.org/src/commit/?id=2a2705a637cd67d0add7fe795fef9b7a722d76bd
commit 2a2705a637cd67d0add7fe795fef9b7a722d76bd
Author: Christos Margiolis <christos@FreeBSD.org>
AuthorDate: 2026-07-27 15:52:09 +0000
Commit: Christos Margiolis <christos@FreeBSD.org>
CommitDate: 2026-07-27 15:52:09 +0000
sound: Add missing newline in dsp_make_dev()'s device_printf()
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
---
sys/dev/sound/pcm/dsp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/dev/sound/pcm/dsp.c b/sys/dev/sound/pcm/dsp.c
index 8cc0884647a3..5560778fdf92 100644
--- a/sys/dev/sound/pcm/dsp.c
+++ b/sys/dev/sound/pcm/dsp.c
@@ -146,7 +146,7 @@ dsp_make_dev(device_t dev)
devargs.mda_si_drv1 = sc;
err = make_dev_s(&devargs, &sc->dsp_dev, "dsp%d", unit);
if (err != 0) {
- device_printf(dev, "failed to create dsp%d: error %d",
+ device_printf(dev, "failed to create dsp%d: error %d\n",
unit, err);
return (err);
}