Catch up with the recent <sys/signal.h> change and make this compile.

This commit is contained in:
Ruslan Ermilov 2005-11-04 20:32:26 +00:00
parent d4d37d2fc9
commit 160ebe8754
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=152062

View file

@ -752,7 +752,7 @@ siginfo_to_ia32siginfo(siginfo_t *src, struct ia32_siginfo *dst)
dst->si_uid = src->si_uid;
dst->si_status = src->si_status;
dst->si_addr = dst->si_addr;
dst->si_value.sigval_int = src->si_value.sigval_int;
dst->si_value.sigval_int = src->si_value.sival_int;
dst->si_band = src->si_band;
dst->__spare__[0] = src->si_trapno;
}