diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-04-09 15:51:49 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-04-09 15:51:49 +0000 |
commit | 02f834f9520ed0042d4ebe6dda9f3b467f95675a (patch) | |
tree | 5370c8f8dbbd930966064e04e8ff6cb87a2c3da4 /ace/WFMO_Reactor.cpp | |
parent | e013977289fd8120e15d3adeba093cb43379c35f (diff) | |
download | ATCD-02f834f9520ed0042d4ebe6dda9f3b467f95675a.tar.gz |
Fixed signed/unsigned mismatched warnings on NT.
Diffstat (limited to 'ace/WFMO_Reactor.cpp')
-rw-r--r-- | ace/WFMO_Reactor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/WFMO_Reactor.cpp b/ace/WFMO_Reactor.cpp index 1f2f67974b2..d71ec81d6d5 100644 --- a/ace/WFMO_Reactor.cpp +++ b/ace/WFMO_Reactor.cpp @@ -758,7 +758,7 @@ ACE_WFMO_Reactor_Handler_Repository::make_changes_in_to_be_added_infos (void) void ACE_WFMO_Reactor_Handler_Repository::dump (void) const { - int i = 0; + size_t i = 0; ACE_TRACE ("ACE_WFMO_Reactor_Handler_Repository::dump"); |