Fix the 'DEBUG' argument code to unbreak the LINT build.
This commit is contained in:
parent
fa6a78376f
commit
3a2e3a4aa7
@ -949,7 +949,7 @@ linux_setitimer(struct thread *td, struct linux_setitimer_args *uap)
|
|||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
if (ldebug(setitimer))
|
if (ldebug(setitimer))
|
||||||
printf(ARGS(setitimer, "%p, %p"),
|
printf(ARGS(setitimer, "%p, %p"),
|
||||||
(void *)args->itv, (void *)args->oitv);
|
(void *)uap->itv, (void *)uap->oitv);
|
||||||
#endif
|
#endif
|
||||||
lp = uap->itv;
|
lp = uap->itv;
|
||||||
if (lp != NULL) {
|
if (lp != NULL) {
|
||||||
@ -1007,7 +1007,7 @@ linux_getitimer(struct thread *td, struct linux_getitimer_args *uap)
|
|||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
if (ldebug(getitimer))
|
if (ldebug(getitimer))
|
||||||
printf(ARGS(getitimer, "%p"), (void *)args->itv);
|
printf(ARGS(getitimer, "%p"), (void *)uap->itv);
|
||||||
#endif
|
#endif
|
||||||
lp = uap->itv;
|
lp = uap->itv;
|
||||||
if (lp != NULL) {
|
if (lp != NULL) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user