diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-01-06 08:48:07 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-01-06 08:48:07 +0000 |
commit | a87876e1cf332d04c27a9b8b26ca397df8bee784 (patch) | |
tree | d6e89a51a9caacce547100b4d5d1a0895b10a273 /share | |
parent | f9e89fbb64bc8a31c459e7a37b357605e5b6aca1 (diff) |
fix typo; from ray lai;
ok mbalmer millert krw
Diffstat (limited to 'share')
-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 dcc5fc4ffac..8b69c6bcd6c 100644 --- a/share/man/man3/queue.3 +++ b/share/man/man3/queue.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: queue.3,v 1.38 2005/10/27 19:27:10 otto Exp $ +.\" $OpenBSD: queue.3,v 1.39 2006/01/06 08:48:06 jmc 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. @@ -714,7 +714,7 @@ macro should be used to check whether a list is empty. SIMPLEQ_HEAD(listhead, entry) head = SIMPLEQ_HEAD_INITIALIZER(head); struct entry { ... - SIMPLEQ_ENTRY(entry) entries; /* List. */ + SIMPLEQ_ENTRY(entry) entries; /* Simple queue. */ ... } *n1, *n2, *np; |