diff options
author | markm <markm@FreeBSD.org> | 2002-07-15 13:03:10 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2002-07-15 13:03:10 +0000 |
commit | 511b33620e9d97a3161373f5e4dbc2cfe4b076b5 (patch) | |
tree | 64a05c689ed3480f190bb6782560d68eef72edcb /sys/dev/sound/pcm/mixer.c | |
parent | e0ecf9a2229a7244ef6cbd5e5a917c8b93982b0b (diff) | |
download | FreeBSD-src-511b33620e9d97a3161373f5e4dbc2cfe4b076b5.zip FreeBSD-src-511b33620e9d97a3161373f5e4dbc2cfe4b076b5.tar.gz |
Use semicolons at the end of function-like macros for the sake of
consistency, style and future cleanliness.
Diffstat (limited to 'sys/dev/sound/pcm/mixer.c')
-rw-r--r-- | sys/dev/sound/pcm/mixer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sound/pcm/mixer.c b/sys/dev/sound/pcm/mixer.c index f732b3f..34dbcbd 100644 --- a/sys/dev/sound/pcm/mixer.c +++ b/sys/dev/sound/pcm/mixer.c @@ -334,7 +334,7 @@ mixer_hwvol_init(device_t dev) OID_AUTO, "hwvol_step", CTLFLAG_RW, &m->hwvol_step, 0, ""); SYSCTL_ADD_PROC(snd_sysctl_tree(dev), SYSCTL_CHILDREN(snd_sysctl_tree_top(dev)), OID_AUTO, "hwvol_mixer", CTLTYPE_STRING | CTLFLAG_RW, m, 0, - sysctl_hw_snd_hwvol_mixer, "A", "") + sysctl_hw_snd_hwvol_mixer, "A", ""); #endif snd_mtxunlock(m->lock); return 0; |