signal: Use correct type for si_band in siginfo_t [BZ #23562]

This commit is contained in:
Ilya Yu. Malakhov 2018-10-19 18:06:32 +02:00 committed by Florian Weimer
parent 53b2bb8747
commit f997b4be18
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2018-10-19 Ilya Yu. Malakhov <malakhov@mcst.ru>
[BZ #23562]
* sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
(struct siginfo_t): Use correct type for si_band.
2018-10-19 Florian Weimer <fweimer@redhat.com>
[BZ #23689]

View File

@ -107,7 +107,7 @@ typedef struct
/* SIGPOLL. */
struct
{
long int si_band; /* Band event for SIGPOLL. */
__SI_BAND_TYPE si_band; /* Band event for SIGPOLL. */
int si_fd;
} _sigpoll;