diff options
author | Marc Laukien <marc@zeroc.com> | 2001-09-03 00:26:54 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2001-09-03 00:26:54 +0000 |
commit | 45dce7b649d5e7b0e41e1e36d5a8054977dda0a2 (patch) | |
tree | 7514176e655ea4aa0ac81dea9a246aec5025c119 /cpp/src/IcePack/Forward.cpp | |
parent | little endian (diff) | |
download | ice-45dce7b649d5e7b0e41e1e36d5a8054977dda0a2.tar.bz2 ice-45dce7b649d5e7b0e41e1e36d5a8054977dda0a2.tar.xz ice-45dce7b649d5e7b0e41e1e36d5a8054977dda0a2.zip |
fixes
Diffstat (limited to 'cpp/src/IcePack/Forward.cpp')
-rw-r--r-- | cpp/src/IcePack/Forward.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IcePack/Forward.cpp b/cpp/src/IcePack/Forward.cpp index 390cdc7945c..cfdf25e3bde 100644 --- a/cpp/src/IcePack/Forward.cpp +++ b/cpp/src/IcePack/Forward.cpp @@ -31,7 +31,7 @@ IcePack::Forward::Forward(const CommunicatorPtr& communicator, const AdminPtr& a value = properties->getProperty("IcePack.Activator.WaitTime"); if (value.length()) { - _waitTime = atoi(value); + _waitTime = atoi(value.c_str()); if (_waitTime < 0) { _waitTime = 0; |