diff options
author | jhb <jhb@FreeBSD.org> | 2002-04-04 20:56:47 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2002-04-04 20:56:47 +0000 |
commit | e41b9c8bc985e43b76dd58c8d1fcb8e2f492894b (patch) | |
tree | b793de57a7a8d6dd735f55c26084755dcbbc8156 /sys/dev/sound/pcm/channel.c | |
parent | 4ca17c54a379a9078a74f29d8d42cf1ddeae30ff (diff) | |
download | FreeBSD-src-e41b9c8bc985e43b76dd58c8d1fcb8e2f492894b.zip FreeBSD-src-e41b9c8bc985e43b76dd58c8d1fcb8e2f492894b.tar.gz |
Add lock type arguments to callers of snd_mtxcreate().
Diffstat (limited to 'sys/dev/sound/pcm/channel.c')
-rw-r--r-- | sys/dev/sound/pcm/channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pcm/channel.c b/sys/dev/sound/pcm/channel.c index c55229c..4c2752e 100644 --- a/sys/dev/sound/pcm/channel.c +++ b/sys/dev/sound/pcm/channel.c @@ -70,7 +70,7 @@ static int chn_buildfeeder(struct pcm_channel *c); static void chn_lockinit(struct pcm_channel *c) { - c->lock = snd_mtxcreate(c->name); + c->lock = snd_mtxcreate(c->name, "pcm channel"); } static void |