summaryrefslogtreecommitdiff
path: root/ACE/ace/TSS_T.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-02-02 12:03:17 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-02-02 12:03:17 +0000
commited75d130e7ef32171d9a316d1e7fbb6c78374d0b (patch)
tree4cf114658e5a92db3fc1f821339a5887b78305e0 /ACE/ace/TSS_T.cpp
parente9c6aeec68b1375b209e771bc3f186c332423b73 (diff)
downloadATCD-ed75d130e7ef32171d9a316d1e7fbb6c78374d0b.tar.gz
Fri Feb 2 12:03:14 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/TSS_T.cpp')
-rw-r--r--ACE/ace/TSS_T.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/TSS_T.cpp b/ACE/ace/TSS_T.cpp
index a9be33923b6..905bcd23202 100644
--- a/ACE/ace/TSS_T.cpp
+++ b/ACE/ace/TSS_T.cpp
@@ -341,7 +341,7 @@ ACE_TSS<TYPE>::ts_object (TYPE *new_ts_obj)
if (ACE_Thread::getspecific (this->key_, &temp) == -1)
return 0; // This should not happen!
ts_obj = static_cast <TYPE *> (temp);
- if (ACE_Thread::setspecific (this->key_, void *) new_ts_obj) == -1)
+ if (ACE_Thread::setspecific (this->key_, (void *) new_ts_obj) == -1)
return ts_obj; // This should not happen!
#endif /* ACE_HAS_THR_C_DEST */