The branch main has been updated by markj:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=2d3515d61e70ee8e37e57c85d566f8c05717763f

commit 2d3515d61e70ee8e37e57c85d566f8c05717763f
Author:     Christos Margiolis <[email protected]>
AuthorDate: 2023-01-24 14:10:49 +0000
Commit:     Mark Johnston <[email protected]>
CommitDate: 2023-01-24 14:10:49 +0000

    mixer(3): Add HEADNAME to TAILQ_HEAD declarations in man page
    
    Forgot to modify the man page in commit 249526dace5d6f.
    
    Reviewed by:    markj
    Differential Revision:  https://reviews.freebsd.org/D38118
---
 lib/libmixer/mixer.3 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/libmixer/mixer.3 b/lib/libmixer/mixer.3
index e1969dfd3a7c..c8b84aa7568d 100644
--- a/lib/libmixer/mixer.3
+++ b/lib/libmixer/mixer.3
@@ -22,7 +22,7 @@
 .\" $FreeBSD$
 .\"
 
-.Dd March 19, 2022
+.Dd January 19, 2023
 .Dt MIXER 3
 .Os
 .Sh NAME
@@ -108,7 +108,7 @@ a simple way.
 A mixer is described by the following structure:
 .Bd -literal
 struct mixer {
-       TAILQ_HEAD(, mix_dev) devs;             /* device list */
+       TAILQ_HEAD(mix_devhead, mix_dev) devs;  /* device list */
        struct mix_dev *dev;                    /* selected device */
        oss_mixerinfo mi;                       /* mixer info */
        oss_card_info ci;                       /* audio card info */
@@ -212,7 +212,7 @@ struct mix_dev {
                float right;                    /* right volume */
        } vol;
        int nctl;                               /* number of controls */
-       TAILQ_HEAD(, mix_ctl) ctls;             /* control list */
+       TAILQ_HEAD(mix_ctlhead, mix_ctl) ctls;  /* control list */
        TAILQ_ENTRY(mix_dev) devs;
 };
 .Ed

Reply via email to