diff options
author | 2002-06-06 15:41:46 +0000 | |
---|---|---|
committer | 2002-06-06 15:41:46 +0000 | |
commit | 8755b0593d8be343c3fa4972c6bf108559d23e92 (patch) | |
tree | aa05a4c082ec5bde6761343373ac257906307e0c /lib/libc/sys | |
parent | style (diff) | |
download | wireguard-openbsd-8755b0593d8be343c3fa4972c6bf108559d23e92.tar.xz wireguard-openbsd-8755b0593d8be343c3fa4972c6bf108559d23e92.zip |
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/libc/sys')
-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 |