diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-04-09 14:46:13 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-04-09 14:46:13 +0000 |
commit | 87a99af6f0d2cd1cc9f56027c64b4c02b9914033 (patch) | |
tree | 10d10aaff150759f7f058a8fbef3ed1d82501ca0 /sys/dev | |
parent | 88d274ccb4133173ee3707657cfe5999205095f7 (diff) |
change space to "_" in tsleep() string
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/audio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/audio.c b/sys/dev/audio.c index 32a1f3844b9..85be437e16a 100644 --- a/sys/dev/audio.c +++ b/sys/dev/audio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: audio.c,v 1.8 1996/05/26 00:26:49 deraadt Exp $ */ +/* $OpenBSD: audio.c,v 1.9 1997/04/09 14:46:12 kstailey Exp $ */ /* $NetBSD: audio.c,v 1.26 1996/05/13 02:26:15 mycroft Exp $ */ /* @@ -655,7 +655,7 @@ audio_drain(sc) * we can't interrupt this sleep, so we set a 1-minute * timeout. */ - error = audio_sleep_timo(&sc->sc_wchan, "aud dr", 60*hz); + error = audio_sleep_timo(&sc->sc_wchan, "aud_dr", 60*hz); if (error) return (error); } |