diff options
Diffstat (limited to 'cpp/src/IceGrid/LocatorRegistryI.cpp')
-rw-r--r-- | cpp/src/IceGrid/LocatorRegistryI.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceGrid/LocatorRegistryI.cpp b/cpp/src/IceGrid/LocatorRegistryI.cpp index b541b5dcb81..1bceb964c89 100644 --- a/cpp/src/IceGrid/LocatorRegistryI.cpp +++ b/cpp/src/IceGrid/LocatorRegistryI.cpp @@ -180,9 +180,9 @@ public: { ex.ice_throw(); } - catch(const Ice::Exception& ex) + catch(const Ice::Exception& e) { - _amiCB->exception(ex); + _amiCB->exception(e); } } @@ -221,11 +221,11 @@ public: } virtual void - synchronized(const Ice::Exception& ex) + synchronized(const Ice::Exception& sex) { try { - ex.ice_throw(); + sex.ice_throw(); } catch(const ServerNotExistException&) { |