fix incorrect type for new si_call_addr in siginfo_t
authorRich Felker <dalias@aerifal.cx>
Thu, 25 Jul 2013 03:17:21 +0000 (23:17 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 25 Jul 2013 03:17:21 +0000 (23:17 -0400)
commita926fe26c126a8c4a2a4211321459a68675d9dcd
tree75539faaa9170e2073dcb4948830038a0f2260d6
parent3d4583c3fba8989a596506619277ecd68768d9ab
fix incorrect type for new si_call_addr in siginfo_t

apparently the original kernel commit's i386 version of siginfo.h
defined this field as unsigned int, but the asm-generic file always
had void *. unsigned int is obviously not a suitable type for an
address, in a non-arch-specific file, and glibc also has void * here,
so I think void * is the right type for it.

also fix redundant type specifiers.
include/signal.h