diff options
author | 2006-01-06 08:48:06 +0000 | |
---|---|---|
committer | 2006-01-06 08:48:06 +0000 | |
commit | 35ebeca39515d88c6a6b12d63538f9e000c336fb (patch) | |
tree | a2e05d0729456168456944dd027fc34269c2b68c | |
parent | put the description of vlanprio in the correct place; (diff) | |
download | wireguard-openbsd-35ebeca39515d88c6a6b12d63538f9e000c336fb.tar.xz wireguard-openbsd-35ebeca39515d88c6a6b12d63538f9e000c336fb.zip |
fix typo; from ray lai;
ok mbalmer millert krw
-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; |