diff options
author | 2005-07-31 03:26:45 +0000 | |
---|---|---|
committer | 2005-07-31 03:26:45 +0000 | |
commit | c97ce64dcf6c78681bf3638fb1bb0f4d9e13f4ce (patch) | |
tree | c83a266939c50d4b40826b9040ca5dcc32929b57 | |
parent | including a driver without putting it's driver name at the end of a files (diff) | |
download | wireguard-openbsd-c97ce64dcf6c78681bf3638fb1bb0f4d9e13f4ce.tar.xz wireguard-openbsd-c97ce64dcf6c78681bf3638fb1bb0f4d9e13f4ce.zip |
Pools aren't fun, don't let people think they are. (fix argument name to
match source).
ok dlg deraadt
-rw-r--r-- | share/man/man9/pool.9 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man9/pool.9 b/share/man/man9/pool.9 index 36827a53c1b..a50ef09e100 100644 --- a/share/man/man9/pool.9 +++ b/share/man/man9/pool.9 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pool.9,v 1.28 2004/01/20 18:37:37 tedu Exp $ +.\" $OpenBSD: pool.9,v 1.29 2005/07/31 03:26:45 pascoe Exp $ .\" $NetBSD: pool.9,v 1.18 2001/06/21 11:59:01 wiz Exp $ .\" .\" Copyright (c) 1997, 1998 The NetBSD Foundation, Inc. @@ -73,7 +73,7 @@ .Ft void .Fo pool_set_drain_hook .Fa "struct pool *pp" -.Fa "void (*fun)(void *, int)" +.Fa "void (*fn)(void *, int)" .Fa "void *arg" .Fc .Ft void * @@ -192,7 +192,7 @@ The function can be used to specify a function that will be called when memory is running low. The callback -.Fa fun +.Fa fn will be called with the arguments .Fa arg which is the third argument to |