summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorChris Cleeland <chris.cleeland@gmail.com>1997-04-04 03:44:42 +0000
committerChris Cleeland <chris.cleeland@gmail.com>1997-04-04 03:44:42 +0000
commit3f49613b57c8ac452d3109c4ae083bab09234fed (patch)
tree7dad680229e403dccf837a655e249cf19e8ccff5 /ace
parent7da4b051e11d61b33aabfddd514e73ec32b51e7a (diff)
downloadATCD-3f49613b57c8ac452d3109c4ae083bab09234fed.tar.gz
* ace/OS.i (mutex_init): Removed errant open-brace ('{'). Thanks
to Chuck Gehr (gehr@sweng.stortek.com) for the fix!
Diffstat (limited to 'ace')
-rw-r--r--ace/OS.i1
1 files changed, 0 insertions, 1 deletions
diff --git a/ace/OS.i b/ace/OS.i
index c74b132a45c..9c1e29b09d9 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -1019,7 +1019,6 @@ ACE_OS::mutex_init (ACE_mutex_t *m,
if (::pthread_mutexattr_init (&attributes) == 0
#if defined (ACE_HAS_PTHREAD_MUTEXATTR_SETKIND_NP)
&& ::pthread_mutexattr_setkind_np (&attributes, type) == 0)
- {
#endif /* ACE_HAS_PTHREAD_MUTEXATTR_SETKIND_NP */
&& ::pthread_mutex_init (m, &attributes) == 0)
{