aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/freebsd32/freebsd32_systrace_args.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/compat/freebsd32/freebsd32_systrace_args.c')
-rw-r--r--sys/compat/freebsd32/freebsd32_systrace_args.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/freebsd32/freebsd32_systrace_args.c b/sys/compat/freebsd32/freebsd32_systrace_args.c
index e4dad59ea7dd..a76d37727abb 100644
--- a/sys/compat/freebsd32/freebsd32_systrace_args.c
+++ b/sys/compat/freebsd32/freebsd32_systrace_args.c
@@ -924,7 +924,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* getrlimit */
case 194: {
- struct __getrlimit_args *p = params;
+ struct getrlimit_args *p = params;
uarg[a++] = p->which; /* u_int */
uarg[a++] = (intptr_t)p->rlp; /* struct rlimit * */
*n_args = 2;
@@ -932,7 +932,7 @@ systrace_args(int sysnum, void *params, uint64_t *uarg, int *n_args)
}
/* setrlimit */
case 195: {
- struct __setrlimit_args *p = params;
+ struct setrlimit_args *p = params;
uarg[a++] = p->which; /* u_int */
uarg[a++] = (intptr_t)p->rlp; /* struct rlimit * */
*n_args = 2;