diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-05-18 21:27:26 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-05-18 21:27:26 +0000 |
commit | 3ba031339978adf970c28b9ea35ec30c80f0838f (patch) | |
tree | 9ef41607377f0c213061848f739038ec2e0b5d30 /sys/kern | |
parent | fc457bc9c1e4c36f96eeb3ab77db065834c1044e (diff) |
paramter -> parameter
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/sys_process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/sys_process.c b/sys/kern/sys_process.c index 51761bed1e8..45c1e2f77af 100644 --- a/sys/kern/sys_process.c +++ b/sys/kern/sys_process.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sys_process.c,v 1.34 2005/12/13 10:33:14 jsg Exp $ */ +/* $OpenBSD: sys_process.c,v 1.35 2006/05/18 21:27:24 miod Exp $ */ /* $NetBSD: sys_process.c,v 1.55 1996/05/15 06:17:47 tls Exp $ */ /*- @@ -322,7 +322,7 @@ sys_ptrace(struct proc *p, void *v, register_t *retval) return (EINVAL); PHOLD(t); - /* If the address paramter is not (int *)1, set the pc. */ + /* If the address parameter is not (int *)1, set the pc. */ if ((int *)SCARG(uap, addr) != (int *)1) if ((error = process_set_pc(t, SCARG(uap, addr))) != 0) goto relebad; |