Deleted Added
full compact
42c42
< * $FreeBSD: head/sys/compat/svr4/svr4_resource.c 107839 2002-12-13 22:41:47Z alfred $
---
> * $FreeBSD: head/sys/compat/svr4/svr4_resource.c 107849 2002-12-14 01:56:26Z alfred $
136c136
< int rl = svr4_to_native_rl(SCARG(uap, which));
---
> int rl = svr4_to_native_rl(uap->which);
174c174
< return copyout(&slim, SCARG(uap, rlp), sizeof(*SCARG(uap, rlp)));
---
> return copyout(&slim, uap->rlp, sizeof(*uap->rlp));
183c183
< int rl = svr4_to_native_rl(SCARG(uap, which));
---
> int rl = svr4_to_native_rl(uap->which);
195c195
< if ((error = copyin(SCARG(uap, rlp), &slim, sizeof(slim))) != 0)
---
> if ((error = copyin(uap->rlp, &slim, sizeof(slim))) != 0)
234c234
< int rl = svr4_to_native_rl(SCARG(uap, which));
---
> int rl = svr4_to_native_rl(uap->which);
272c272
< return copyout(&slim, SCARG(uap, rlp), sizeof(*SCARG(uap, rlp)));
---
> return copyout(&slim, uap->rlp, sizeof(*uap->rlp));
281c281
< int rl = svr4_to_native_rl(SCARG(uap, which));
---
> int rl = svr4_to_native_rl(uap->which);
293c293
< if ((error = copyin(SCARG(uap, rlp), &slim, sizeof(slim))) != 0)
---
> if ((error = copyin(uap->rlp, &slim, sizeof(slim))) != 0)