diff options
author | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2005-07-31 03:26:46 +0000 |
---|---|---|
committer | Christopher Pascoe <pascoe@cvs.openbsd.org> | 2005-07-31 03:26:46 +0000 |
commit | 2c25fdbabd0951de2d2c84e82326825b902ced70 (patch) | |
tree | 04082c9bf4df716023e8116bd9eeb0ace1b60591 /share | |
parent | 09ef63532006a7f2839cf6a95eac9a3e417f8ac6 (diff) |
Pools aren't fun, don't let people think they are. (fix argument name to
match source).
ok dlg deraadt
Diffstat (limited to 'share')
-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 |