Fix the typo in the fallback path in __pthread_mutex_timedlock ()
whic hcalls lll_futex_timed_wait (). This is only useful for cases
where the patch is being backported to older distributions where
only lll_futex_timed_wait () is available.
+2018-06-12 Carlos O'Donell <carlos@redhat.com>
+
+ * nptl/pthread_mutex_timedlock.c (__pthread_mutex_timedlock): Call
+ lll_futex_timed_wait.
+
2018-06-12 Joseph Myers <joseph@codesourcery.com>
[BZ #23277]
/* Block using the futex. */
#if (!defined __ASSUME_FUTEX_CLOCK_REALTIME \
|| !defined lll_futex_timed_wait_bitset)
- lll_futex_timed wait (&mutex->__data.__lock, oldval,
+ lll_futex_timed_wait (&mutex->__data.__lock, oldval,
&rt, PTHREAD_ROBUST_MUTEX_PSHARED (mutex));
#else
int err = lll_futex_timed_wait_bitset (&mutex->__data.__lock,