diff options
author | mpp <mpp@FreeBSD.org> | 1997-03-09 00:49:00 +0000 |
---|---|---|
committer | mpp <mpp@FreeBSD.org> | 1997-03-09 00:49:00 +0000 |
commit | 472a3946c4500476365f7c36f1fb2537d8d8d616 (patch) | |
tree | 614cb63834a3bc0764c15cadf56c768b16ba28a6 /share/man/man3 | |
parent | 5618b9b15f5f5d2412621797c0c00b5ccd60032c (diff) | |
download | FreeBSD-src-472a3946c4500476365f7c36f1fb2537d8d8d616.zip FreeBSD-src-472a3946c4500476365f7c36f1fb2537d8d8d616.tar.gz |
The CIRCLEQ_ENTRY example was wrong. Part of PR# 2917.
Diffstat (limited to 'share/man/man3')
-rw-r--r-- | share/man/man3/queue.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man3/queue.3 b/share/man/man3/queue.3 index dda795b..6ff06bd 100644 --- a/share/man/man3/queue.3 +++ b/share/man/man3/queue.3 @@ -30,7 +30,7 @@ .\" SUCH DAMAGE. .\" .\" @(#)queue.3 8.2 (Berkeley) 1/24/94 -.\" $Id$ +.\" $Id: queue.3,v 1.10 1997/03/07 03:27:54 jmg Exp $ .\" .Dd January 24, 1994 .Dt QUEUE 3 @@ -826,7 +826,7 @@ CIRCLEQ_HEAD(circleq, entry) head; struct circleq *headp; /* Circular queue head. */ struct entry { ... - CIRCLEQ_ENTRY entries; /* Circular queue. */ + CIRCLEQ_ENTRY(entry) entries; /* Circular queue. */ ... } *n1, *n2, *np; |