From: Ilya Yu. Malakhov Date: Fri, 19 Oct 2018 16:06:32 +0000 (+0200) Subject: signal: Use correct type for si_band in siginfo_t [BZ #23562] X-Git-Tag: glibc-2.29~388 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f997b4be18f7e57d757d39e42f7715db26528aa0;p=thirdparty%2Fglibc.git signal: Use correct type for si_band in siginfo_t [BZ #23562] --- diff --git a/ChangeLog b/ChangeLog index 888fcf419fc..6737ba065c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2018-10-19 Ilya Yu. Malakhov + + [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 [BZ #23689] diff --git a/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h b/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h index 33766d1813c..43c4e009a44 100644 --- a/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h +++ b/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h @@ -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;