From 21ed9908a2b8750db3431b786c69a53f5395f688 Mon Sep 17 00:00:00 2001
From: Cameron Grant <cg@FreeBSD.org>
Date: Sun, 28 Apr 2002 22:59:45 +0000
Subject: [PATCH] add a missing \n to an unregister failure message

---
 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 21b79c25658a..6a982df640bf 100644
--- a/sys/dev/sound/pcm/sound.c
+++ b/sys/dev/sound/pcm/sound.c
@@ -671,7 +671,7 @@ pcm_unregister(device_t dev)
 	SLIST_FOREACH(sce, &d->channels, link) {
 		ch = sce->channel;
 		if (ch->refcount > 0) {
-			device_printf(dev, "unregister: channel %s busy (pid %d)", ch->name, ch->pid);
+			device_printf(dev, "unregister: channel %s busy (pid %d)\n", ch->name, ch->pid);
 			snd_mtxunlock(d->lock);
 			return EBUSY;
 		}