diff options
author | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-06-06 15:41:47 +0000 |
---|---|---|
committer | Mike Pechkin <mpech@cvs.openbsd.org> | 2002-06-06 15:41:47 +0000 |
commit | 0e99a652d12cb73e2c41bf8a32d0a3f2cbc19dc3 (patch) | |
tree | 34d592c77ceb47327ec3fc0cd6de3c1d17aeaee3 /lib | |
parent | d28a3dbe3f14dd5ba4419c3f8d5379d9de133112 (diff) |
Fix *documentation*: one arg of the ktrace(2) is pid_t not int, found while
have fun w/ pid_t cleanups.
millert@ ok
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/sys/ktrace.2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/sys/ktrace.2 b/lib/libc/sys/ktrace.2 index e38dc292cc7..01a700b0efb 100644 --- a/lib/libc/sys/ktrace.2 +++ b/lib/libc/sys/ktrace.2 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ktrace.2,v 1.10 2002/02/22 00:05:32 deraadt Exp $ +.\" $OpenBSD: ktrace.2,v 1.11 2002/06/06 15:41:46 mpech Exp $ .\" $NetBSD: ktrace.2,v 1.2 1995/02/27 12:33:58 cgd Exp $ .\" .\" Copyright (c) 1993 @@ -46,7 +46,7 @@ .Fd #include <sys/uio.h> .Fd #include <sys/ktrace.h> .Ft int -.Fn ktrace "const char *tracefile" "int ops" "int trpoints" "int pid" +.Fn ktrace "const char *tracefile" "int ops" "int trpoints" "pid_t pid" .Sh DESCRIPTION The .Fn ktrace |