diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-11-07 21:02:44 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-11-07 21:02:44 +0000 |
commit | 0c274ae213151e5abe92a16dc28d52a2722c53ff (patch) | |
tree | 66d9da03fddd7decff0a1da9ee4fb09607e1cca3 /share/man/man3 | |
parent | eb92194c57da7aeb6eb2f0d291dbad83e942e0b6 (diff) |
Fix CIRCLEQ example; Hector A. Paterno
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 90139d7ed8b..d484d4c7545 100644 --- a/share/man/man3/queue.3 +++ b/share/man/man3/queue.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: queue.3,v 1.23 2002/04/26 02:24:48 wcobb Exp $ +.\" $OpenBSD: queue.3,v 1.24 2002/11/07 21:02:43 millert Exp $ .\" $NetBSD: queue.3,v 1.4 1995/07/03 00:25:36 mycroft Exp $ .\" .\" Copyright (c) 1993 The Regents of the University of California. @@ -962,7 +962,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; |