1
1

Fix typo. Change mutex_destory to mutex_destroy.

This commit was SVN r15083.
Этот коммит содержится в:
Ethan Mallove 2007-06-14 19:02:37 +00:00
родитель 6cdfefad87
Коммит a09aebc30b

Просмотреть файл

@ -93,7 +93,7 @@ static void opal_mutex_destruct(opal_mutex_t *m)
#if OMPI_HAVE_POSIX_THREADS
pthread_mutex_destroy(&m->m_lock_pthread);
#elif OMPI_HAVE_SOLARIS_THREADS
mutex_destory(&m->m_lock_solaris);
mutex_destroy(&m->m_lock_solaris);
#endif
}