From db1eb110ccebbe965e34be963188145d8be4b5f2 Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Wed, 25 Aug 2004 14:55:35 +0000 Subject: [PATCH] fix my misuse of #ifdef This commit was SVN r2301. --- src/threads/mutex_unix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/threads/mutex_unix.h b/src/threads/mutex_unix.h index 66fe8b83cb..d5a2ce76b6 100644 --- a/src/threads/mutex_unix.h +++ b/src/threads/mutex_unix.h @@ -26,7 +26,7 @@ struct ompi_mutex_t { ompi_object_t super; -#if defined(OMPI_HAVE_POSIX_THREADS) +#if OMPI_HAVE_POSIX_THREADS pthread_mutex_t m_lock_pthread; #endif ompi_lock_t m_lock_atomic;