>From 48dab2f8e0b849e406f906f2010cbdc422714d86 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 2 Nov 2019 12:48:27 -0400 Subject: [PATCH 2/3] compat fixup: pthread_timedjoin_np_time32 --- compat/time32/pthread_timedjoin_np_time32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compat/time32/pthread_timedjoin_np_time32.c b/compat/time32/pthread_timedjoin_np_time32.c index 99a26bc6..3ec29951 100644 --- a/compat/time32/pthread_timedjoin_np_time32.c +++ b/compat/time32/pthread_timedjoin_np_time32.c @@ -3,7 +3,7 @@ #include #include -int __pthread_timedjoin_np_time32(pthread_t t, void **res, const struct timespec *at32) +int __pthread_timedjoin_np_time32(pthread_t t, void **res, const struct timespec32 *at32) { return pthread_timedjoin_np(t, res, !at32 ? 0 : (&(struct timespec){ .tv_sec = at32->tv_sec, .tv_nsec = at32->tv_nsec})); -- 2.21.0