summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorIlya Yu. Malakhov <malakhov@mcst.ru>2018-10-19 18:06:32 +0200
committerFlorian Weimer <fweimer@redhat.com>2018-10-19 18:06:32 +0200
commitf997b4be18f7e57d757d39e42f7715db26528aa0 (patch)
tree4368f607b25e205725998f650497d784d3806527 /sysdeps
parent53b2bb87472138910df47b9bc6c8227e0550a23e (diff)
downloadglibc-f997b4be18f7e57d757d39e42f7715db26528aa0.tar.gz
signal: Use correct type for si_band in siginfo_t [BZ #23562]
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/bits/types/siginfo_t.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h b/sysdeps/unix/sysv/linux/bits/types/siginfo_t.h
index 33766d1813..43c4e009a4 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;