diff options
| author | Michael Kerrisk <mtk.manpages@gmail.com> | 2020-12-23 14:24:43 +0100 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2020-12-23 14:24:43 +0100 |
| commit | 1297239d41f00e75ff39821de36980c82767fe50 (patch) | |
| tree | ab3d76c1af369498327ec0e73c3bb977a9eec94c /man3 | |
| parent | c5127de6ff4e0547a931392d2e7502f597ee927f (diff) | |
| download | man-pages-1297239d41f00e75ff39821de36980c82767fe50.tar.gz | |
slist.3: tfix
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man3')
| -rw-r--r-- | man3/slist.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/man3/slist.3 b/man3/slist.3 index 014c8080ab..f271eb6a5b 100644 --- a/man3/slist.3 +++ b/man3/slist.3 @@ -305,7 +305,7 @@ without interfering with the traversal. struct entry { int data; - SLIST_ENTRY(entry) entries; /* Singly linked List */ + SLIST_ENTRY(entry) entries; /* Singly linked list */ }; SLIST_HEAD(slisthead, entry); @@ -314,7 +314,7 @@ int main(void) { struct entry *n1, *n2, *n3, *np; - struct slisthead head; /* Singly linked List + struct slisthead head; /* Singly linked list head */ SLIST_INIT(&head); /* Initialize the queue */ |
