From fcb01752cfb80a890963f6abf240255a6677a838 Mon Sep 17 00:00:00 2001 From: cg Date: Sun, 16 Jan 2000 12:52:22 +0000 Subject: [PATCH] fix missing \n in sndstat output --- sys/dev/sound/pcm/sound.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/sound/pcm/sound.c b/sys/dev/sound/pcm/sound.c index a98db81e7b6..6d9fe0965a4 100644 --- a/sys/dev/sound/pcm/sound.c +++ b/sys/dev/sound/pcm/sound.c @@ -447,7 +447,7 @@ status_init(char *buf, int size) (!(d->flags & SD_F_SIMPLEX))? " duplex" : ""); else snprintf(buf + strlen(buf), size - strlen(buf), - " (mixer only)"); + " (mixer only)\n"); } } return strlen(buf); -- 2.45.2