summaryrefslogtreecommitdiff
path: root/cppe/demo/IceE/throughput/Client.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-08-08 13:44:08 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-08-08 13:44:08 +0000
commit942f8a636f76d0f00d01180f2c8da1350677b873 (patch)
treebe8d848a27a7452d45968aa0ccfbf2417993f499 /cppe/demo/IceE/throughput/Client.cpp
parentPorted throughput to WinCE (diff)
downloadice-942f8a636f76d0f00d01180f2c8da1350677b873.tar.bz2
ice-942f8a636f76d0f00d01180f2c8da1350677b873.tar.xz
ice-942f8a636f76d0f00d01180f2c8da1350677b873.zip
Fixed linux compile issue
Diffstat (limited to 'cppe/demo/IceE/throughput/Client.cpp')
-rw-r--r--cppe/demo/IceE/throughput/Client.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/cppe/demo/IceE/throughput/Client.cpp b/cppe/demo/IceE/throughput/Client.cpp
index eb2030171d5..fbef5415e4d 100644
--- a/cppe/demo/IceE/throughput/Client.cpp
+++ b/cppe/demo/IceE/throughput/Client.cpp
@@ -43,7 +43,8 @@ run(int argc, char* argv[], const Ice::CommunicatorPtr& communicator)
// Check if we need to run with small sequences
//
int reduce = 1;
- for(int i = 0; i < argc; ++i)
+ int i;
+ for(i = 0; i < argc; ++i)
{
if(strcmp(argv[i], "--small") == 0)
{