Fix twalk()s 3rd argument name so that it matches rest of manpage and

the source code.
This commit is contained in:
simonb 2007-12-07 07:33:13 +00:00
parent a9718d7115
commit 179bda4711
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
.\" $NetBSD: tsearch.3,v 1.8 2006/11/26 13:10:54 elad Exp $
.\" $NetBSD: tsearch.3,v 1.9 2007/12/07 07:33:13 simonb Exp $
.\" Copyright (c) 1997 Todd C. Miller <Todd.Miller@courtesan.com>
.\" All rights reserved.
.\"
@ -41,7 +41,7 @@
.Ft void *
.Fn tsearch "const void *key" "void **rootp" "int (*compar) (const void *, const void *)"
.Ft void
.Fn twalk "const void *root" "void (*compar) (const void *, VISIT, int)"
.Fn twalk "const void *root" "void (*action) (const void *, VISIT, int)"
.Sh DESCRIPTION
The
.Fn tdelete ,