From 3adfef7eaafae8dc00fa12cdecde68c01b7d565a Mon Sep 17 00:00:00 2001 From: Matthew Krupcale Date: Thu, 6 Jul 2017 10:22:20 -0300 Subject: [PATCH] nptl: Fix typo on __have_pthread_attr_t (BZ#21715) This patch fixes some build issues when including types/sigevent_t.h along with bits/pthreadtypes.h. Checked on x86_64-linux-gnu and on a build on supported major ABIs. [BZ #21715] * sysdeps/nptl/bits/pthreadtypes.h (__have_pthread_attr_t): Fix typo on definition. --- ChangeLog | 6 ++++++ sysdeps/nptl/bits/pthreadtypes.h | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 70e0a25eda..04a2647d90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-07-06 Matthew Krupcale + + [BZ #21715] + * sysdeps/nptl/bits/pthreadtypes.h (__have_pthread_attr_t): Fix typo + on definition. + 2017-07-06 Florian Weimer H.J. Lu diff --git a/sysdeps/nptl/bits/pthreadtypes.h b/sysdeps/nptl/bits/pthreadtypes.h index 8839559f5a..0941e9eb96 100644 --- a/sysdeps/nptl/bits/pthreadtypes.h +++ b/sysdeps/nptl/bits/pthreadtypes.h @@ -60,7 +60,7 @@ union pthread_attr_t }; #ifndef __have_pthread_attr_t typedef union pthread_attr_t pthread_attr_t; -# define __have_pthread_attr_t1 +# define __have_pthread_attr_t 1 #endif