diff options
Diffstat (limited to 'cpp/src/IceGrid/AdminI.cpp')
-rw-r--r-- | cpp/src/IceGrid/AdminI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceGrid/AdminI.cpp b/cpp/src/IceGrid/AdminI.cpp index 473f05310bc..22184a46f4c 100644 --- a/cpp/src/IceGrid/AdminI.cpp +++ b/cpp/src/IceGrid/AdminI.cpp @@ -434,9 +434,9 @@ public: _proxy.handleException(ex); assert(false); } - catch(const Ice::Exception& ex) + catch(const Ice::Exception& e) { - _amdCB->ice_exception(ex); + _amdCB->ice_exception(e); } } @@ -491,9 +491,9 @@ public: { _amdCB->ice_response(); } - catch(const Ice::Exception& ex) + catch(const Ice::Exception& e) { - _amdCB->ice_exception(ex); + _amdCB->ice_exception(e); } } |