add a missing \n to an unregister failure message

This commit is contained in:
cg 2002-04-28 22:59:45 +00:00
parent 5aa98887d0
commit edb0df5e22

View File

@ -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;
}