Deleted Added
full compact
39c39
< * $FreeBSD: head/sys/kern/kern_resource.c 96886 2002-05-19 00:14:50Z jhb $
---
> * $FreeBSD: head/sys/kern/kern_resource.c 99012 2002-06-29 02:00:02Z alfred $
429,430c429
< if ((error =
< copyin((caddr_t)uap->rlp, (caddr_t)&olim, sizeof(struct orlimit))))
---
> if ((error = copyin(uap->rlp, &olim, sizeof(struct orlimit))))
468c467
< error = copyout((caddr_t)&olim, (caddr_t)uap->rlp, sizeof(olim));
---
> error = copyout(&olim, uap->rlp, sizeof(olim));
492,493c491
< if ((error =
< copyin((caddr_t)uap->rlp, (caddr_t)&alim, sizeof (struct rlimit))))
---
> if ((error = copyin(uap->rlp, &alim, sizeof (struct rlimit))))
628c626
< error = copyout((caddr_t)&p->p_rlimit[uap->which], (caddr_t)uap->rlp,
---
> error = copyout(&p->p_rlimit[uap->which], uap->rlp,
782,783c780
< error = copyout((caddr_t)rup, (caddr_t)uap->rusage,
< sizeof (struct rusage));
---
> error = copyout(rup, uap->rusage, sizeof (struct rusage));