diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-05 21:55:30 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-12-05 21:55:30 +0000 |
commit | 5396e0deef2029a78e3c809dc95304e947fb6f56 (patch) | |
tree | 9421043650142e6b0e210ccbdee99b29cbafd39d | |
parent | ed5f17335ca9def4619cb6fc189bca0b3a11411a (diff) |
Fix pasto in SLIST_REMOVE synopsis; deraadt@ OK
-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 5670b3e3ca6..b739e762944 100644 --- a/share/man/man3/queue.3 +++ b/share/man/man3/queue.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: queue.3,v 1.31 2003/06/02 23:30:12 millert Exp $ +.\" $OpenBSD: queue.3,v 1.32 2003/12/05 21:55:29 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. @@ -133,7 +133,7 @@ .Ft void .Fn SLIST_REMOVE_HEAD "SLIST_HEAD *head" "SLIST_ENTRY NAME" .Ft void -.Fn SLIST_REMOVE "SLIST_HEAD *head" "TYPE *elm" "TYPE" "SLIST_ENTRY NAME" +.Fn SLIST_REMOVE "SLIST_HEAD *head" "struct TYPE *elm" "TYPE" "SLIST_ENTRY NAME" .Pp .Fn LIST_ENTRY "TYPE" .Fn LIST_HEAD "HEADNAME" "TYPE" |