From 2ec060b71cc1cddb506d3a38475aadc184e25985 Mon Sep 17 00:00:00 2001 From: Igor Kudrin Date: Thu, 23 Jun 2016 08:50:18 -0700 Subject: Fix compilation error in MSYS2 environment. gold/ * gold-threads.cc (impl_threads::Lock_impl_threads): Fix typos. --- gold/gold-threads.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gold/gold-threads.cc') diff --git a/gold/gold-threads.cc b/gold/gold-threads.cc index ecb10f7..d4e2ac6 100644 --- a/gold/gold-threads.cc +++ b/gold/gold-threads.cc @@ -100,11 +100,11 @@ Lock_impl_threads::Lock_impl_threads() pthread_mutexattr_t attr; int err = pthread_mutexattr_init(&attr); if (err != 0) - gold_fatal(_("pthead_mutextattr_init failed: %s"), strerror(err)); + gold_fatal(_("pthead_mutexattr_init failed: %s"), strerror(err)); #ifdef PTHREAD_MUTEX_ADAPTIVE_NP - err = pthread_mutextattr_settype(&attr, PTHREAD_MUTEX_ADAPTIVE_NP); + err = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_ADAPTIVE_NP); if (err != 0) - gold_fatal(_("pthread_mutextattr_settype failed: %s"), strerror(err)); + gold_fatal(_("pthread_mutexattr_settype failed: %s"), strerror(err)); #endif err = pthread_mutex_init(&this->mutex_, &attr); -- cgit v1.1