Fix the 'DEBUG' argument code to unbreak the amd64 LINT build.

This commit is contained in:
obrien 2004-08-16 12:15:07 +00:00
parent c17bb589d3
commit 863d61032d

View File

@ -188,7 +188,7 @@ linux_signal(struct thread *td, struct linux_signal_args *args)
#ifdef DEBUG
if (ldebug(signal))
printf(ARGS(signal, "%d, %p"),
args->sig, (void *)args->handler);
args->sig, (void *)(uintptr_t)args->handler);
#endif
nsa.lsa_handler = args->handler;