Use semicolons at the end of function-like macros for the sake of

consistency, style and future cleanliness.
This commit is contained in:
Mark Murray 2002-07-15 13:03:10 +00:00
parent b3f379f65f
commit 64d85ef750
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=100071
2 changed files with 2 additions and 2 deletions

View file

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

View file

@ -337,7 +337,7 @@ vchan_initsys(device_t dev)
d = device_get_softc(dev);
SYSCTL_ADD_PROC(snd_sysctl_tree(dev), SYSCTL_CHILDREN(snd_sysctl_tree_top(dev)),
OID_AUTO, "vchans", CTLTYPE_INT | CTLFLAG_RW, d, sizeof(d),
sysctl_hw_snd_vchans, "I", "")
sysctl_hw_snd_vchans, "I", "");
#endif
return 0;