diff options
| author | erh <erh@NetBSD.org> | 1998-10-07 23:05:09 +0000 |
|---|---|---|
| committer | erh <erh@NetBSD.org> | 1998-10-07 23:05:09 +0000 |
| commit | 8ce2ceae35fc561b4e4cfe86a548fbacc2665f12 (patch) | |
| tree | bb8a078c32ec7446b138c730d6a91893dc3329a7 /sys/compat/linux/common | |
| parent | a956aca8aa42c275846a54c5f9de516d58d0b603 (diff) | |
Fix typos.
Diffstat (limited to 'sys/compat/linux/common')
| -rw-r--r-- | sys/compat/linux/common/linux_sig_notalpha.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/compat/linux/common/linux_sig_notalpha.c b/sys/compat/linux/common/linux_sig_notalpha.c index 574ed37b4f9..12692da3e22 100644 --- a/sys/compat/linux/common/linux_sig_notalpha.c +++ b/sys/compat/linux/common/linux_sig_notalpha.c @@ -1,4 +1,4 @@ -/* $NetBSD: linux_sig_notalpha.c,v 1.17 1998/10/07 22:11:16 erh Exp $ */ +/* $NetBSD: linux_sig_notalpha.c,v 1.18 1998/10/07 23:05:09 erh Exp $ */ /*- * Copyright (c) 1995, 1998 The NetBSD Foundation, Inc. @@ -144,14 +144,14 @@ linux_sys_sigprocmask(p, v, retval) void *v; register_t *retval; { - struct linux_sys_rt_sigprocmask_args /* { + struct linux_sys_sigprocmask_args /* { syscallarg(int) how; - syscallarg(const linux_sigset_t *) set; - syscallarg(linux_sigset_t *) oset; + syscallarg(const linux_old_sigset_t *) set; + syscallarg(linux_old_sigset_t *) oset; } */ *uap = v; return(linux_sigprocmask1(p, SCARG(uap, how), - SCARG(uap, set), SCARG(uap, oset)); + SCARG(uap, set), SCARG(uap, oset))); } /* |
