From 3adfef7eaafae8dc00fa12cdecde68c01b7d565a Mon Sep 17 00:00:00 2001 From: Matthew Krupcale Date: Thu, 6 Jul 2017 10:22:20 -0300 Subject: 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. --- sysdeps/nptl/bits/pthreadtypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdeps/nptl') 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 -- cgit 1.4.1