aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristos Margiolis <christos@FreeBSD.org>2026-07-27 15:52:09 +0000
committerChristos Margiolis <christos@FreeBSD.org>2026-07-27 15:52:09 +0000
commit2a2705a637cd67d0add7fe795fef9b7a722d76bd (patch)
tree046e8b037086187dfb62feeda9dac65b06d1e5c8
parenta46c92aad16bf6c9d6c3967c8af3e8b3bdb59cda (diff)
sound: Add missing newline in dsp_make_dev()'s device_printf()
Sponsored by: The FreeBSD Foundation MFC after: 1 week
-rw-r--r--sys/dev/sound/pcm/dsp.c2
1 files changed, 1 insertions, 1 deletions
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);
}