diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-08-29 09:12:22 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-08-29 09:12:22 +0000 |
commit | 05177cd021dd5d1371e28d3fd927981cc872b92e (patch) | |
tree | e3ec796b2702cafd7a5a4a01ee425addc13d7593 /cpp/src | |
parent | http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=1274 (diff) | |
download | ice-05177cd021dd5d1371e28d3fd927981cc872b92e.tar.bz2 ice-05177cd021dd5d1371e28d3fd927981cc872b92e.tar.xz ice-05177cd021dd5d1371e28d3fd927981cc872b92e.zip |
windows fix for http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=1274
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceGrid/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Client.cpp b/cpp/src/IceGrid/Client.cpp index d2d3dfb55d2..b1c5f09fb6a 100644 --- a/cpp/src/IceGrid/Client.cpp +++ b/cpp/src/IceGrid/Client.cpp @@ -282,7 +282,7 @@ Client::run(int argc, char* argv[]) session = IceGrid::AdminSessionPrx::uncheckedCast(router->createSession(id, password)); } - timeout = router->getSessionTimeout(); + timeout = static_cast<int>(router->getSessionTimeout()); } else { |