summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/LocatorI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceGrid/LocatorI.cpp')
-rw-r--r--cpp/src/IceGrid/LocatorI.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/IceGrid/LocatorI.cpp b/cpp/src/IceGrid/LocatorI.cpp
index 3d962fe7e8c..9dbfbf71aff 100644
--- a/cpp/src/IceGrid/LocatorI.cpp
+++ b/cpp/src/IceGrid/LocatorI.cpp
@@ -123,12 +123,12 @@ public:
_cb->ice_response(_obj);
return;
}
- catch(const Ice::Exception& ex)
+ catch(const Ice::Exception& e)
{
//
// Rethrow unexpected exception.
//
- _cb->ice_exception(ex);
+ _cb->ice_exception(e);
return;
}
@@ -779,11 +779,11 @@ public:
}
virtual void
- synchronized(const Ice::Exception& ex)
+ synchronized(const Ice::Exception& sex)
{
try
{
- ex.ice_throw();
+ sex.ice_throw();
}
catch(const AdapterNotExistException&)
{