From 2e1a2fe3c1f0e363b7d5c52c130f183daf09111e Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 4 Sep 2022 12:34:05 +0200 Subject: [PATCH] Fix bug in SIZEOF_PTHREAD_T implementation --- libbuild2-autoconf/libbuild2/autoconf/checks/SIZEOF_PTHREAD_T.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbuild2-autoconf/libbuild2/autoconf/checks/SIZEOF_PTHREAD_T.h b/libbuild2-autoconf/libbuild2/autoconf/checks/SIZEOF_PTHREAD_T.h index 9ad79d1..1bedc6c 100644 --- a/libbuild2-autoconf/libbuild2/autoconf/checks/SIZEOF_PTHREAD_T.h +++ b/libbuild2-autoconf/libbuild2/autoconf/checks/SIZEOF_PTHREAD_T.h @@ -3,7 +3,7 @@ #undef SIZEOF_PTHREAD_T #ifndef _WIN32 -# ifdef defined(__APPLE__) +# if defined(__APPLE__) # ifdef __LP64__ # define SIZEOF_PTHREAD_T 8 # else