diff options
author | obrien <obrien@FreeBSD.org> | 2004-08-16 10:36:12 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2004-08-16 10:36:12 +0000 |
commit | 4156b8dbb91c12f92e5a8bef57bef4922d124386 (patch) | |
tree | d163d0f27fb820050aa0fcf45e9ebd206f119651 /sys/compat | |
parent | 652905e47adc90be776a37b2cb1d15a7afcea010 (diff) | |
download | FreeBSD-src-4156b8dbb91c12f92e5a8bef57bef4922d124386.zip FreeBSD-src-4156b8dbb91c12f92e5a8bef57bef4922d124386.tar.gz |
Fix the 'DEBUG' argument code to unbreak the LINT build.
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/linux_misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index c01b126..292a20f 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -949,7 +949,7 @@ linux_setitimer(struct thread *td, struct linux_setitimer_args *uap) #ifdef DEBUG if (ldebug(setitimer)) printf(ARGS(setitimer, "%p, %p"), - (void *)args->itv, (void *)args->oitv); + (void *)uap->itv, (void *)uap->oitv); #endif lp = uap->itv; if (lp != NULL) { @@ -1007,7 +1007,7 @@ linux_getitimer(struct thread *td, struct linux_getitimer_args *uap) #ifdef DEBUG if (ldebug(getitimer)) - printf(ARGS(getitimer, "%p"), (void *)args->itv); + printf(ARGS(getitimer, "%p"), (void *)uap->itv); #endif lp = uap->itv; if (lp != NULL) { |