aboutsummaryrefslogtreecommitdiff
path: root/sys/alpha/osf1
diff options
context:
space:
mode:
authorAndrew Gallatin <gallatin@FreeBSD.org>2000-10-25 00:37:34 +0000
committerAndrew Gallatin <gallatin@FreeBSD.org>2000-10-25 00:37:34 +0000
commit2acbb2b129dd0d29bf9afb58d654d9223f5e0efe (patch)
tree1b3a67506f25891ad987c289c42fc82b89669f8e /sys/alpha/osf1
parentf6835fffeb29585e378063177c6390628d384ae8 (diff)
Notes
Diffstat (limited to 'sys/alpha/osf1')
-rw-r--r--sys/alpha/osf1/osf1_misc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/alpha/osf1/osf1_misc.c b/sys/alpha/osf1/osf1_misc.c
index 241ac584dacc..4e2fdebb82ec 100644
--- a/sys/alpha/osf1/osf1_misc.c
+++ b/sys/alpha/osf1/osf1_misc.c
@@ -399,7 +399,7 @@ osf1_getrlimit(p, uap)
{
struct __getrlimit_args /* {
syscallarg(u_int) which;
- syscallarg(struct orlimit *) rlp;
+ syscallarg(struct rlimit *) rlp;
} */ a;
if (SCARG(uap, which) >= OSF1_RLIMIT_NLIMITS)
@@ -411,7 +411,7 @@ osf1_getrlimit(p, uap)
SCARG(&a, which) = RLIMIT_NOFILE;
else
return (0);
- SCARG(&a, rlp) = (struct orlimit *)SCARG(uap, rlp);
+ SCARG(&a, rlp) = (struct rlimit *)SCARG(uap, rlp);
return getrlimit(p, &a);
}
@@ -424,7 +424,7 @@ osf1_setrlimit(p, uap)
{
struct __setrlimit_args /* {
syscallarg(u_int) which;
- syscallarg(struct orlimit *) rlp;
+ syscallarg(struct rlimit *) rlp;
} */ a;
if (SCARG(uap, which) >= OSF1_RLIMIT_NLIMITS)
@@ -436,7 +436,7 @@ osf1_setrlimit(p, uap)
SCARG(&a, which) = RLIMIT_NOFILE;
else
return (0);
- SCARG(&a, rlp) = (struct orlimit *)SCARG(uap, rlp);
+ SCARG(&a, rlp) = (struct rlimit *)SCARG(uap, rlp);
return setrlimit(p, &a);
}