From f997b4be18f7e57d757d39e42f7715db26528aa0 Mon Sep 17 00:00:00 2001 From: "Ilya Yu. Malakhov" Date: Fri, 19 Oct 2018 18:06:32 +0200 Subject: signal: Use correct type for si_band in siginfo_t [BZ #23562] --- ChangeLog | 6 ++++++ sysdeps/unix/sysv/linux/bits/types/siginfo_t.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 888fcf4..6737ba0 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 33766d1..43c4e00 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; -- cgit v1.1