summaryrefslogtreecommitdiff
path: root/ace/Future.cpp
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-10 22:06:08 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-10 22:06:08 +0000
commit44b8316cb48a09abd6599833a21cc58b71eed1bb (patch)
tree27ccfcd6e9ccede1640cf7e577bc1fd31ab0abf0 /ace/Future.cpp
parent6c076f4dbd74e12946a483654ff02d38e50a3577 (diff)
downloadATCD-44b8316cb48a09abd6599833a21cc58b71eed1bb.tar.gz
(dump) added cast of ref_count_ to int
Diffstat (limited to 'ace/Future.cpp')
-rw-r--r--ace/Future.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/Future.cpp b/ace/Future.cpp
index e16b319014e..7c5fd9b29af 100644
--- a/ace/Future.cpp
+++ b/ace/Future.cpp
@@ -18,7 +18,7 @@ ACE_Future_Rep<T>::dump (void) const
ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
ACE_DEBUG ((LM_DEBUG,
"ref_count_ = %d\n",
- this->ref_count_));
+ (int) this->ref_count_));
ACE_DEBUG ((LM_INFO,"value_: \n"));
if (this->value_)
ACE_DEBUG ((LM_DEBUG," (NON-NULL)\n"));