diff options
Diffstat (limited to 'python/modules/IcePy/Operation.cpp')
-rw-r--r-- | python/modules/IcePy/Operation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/modules/IcePy/Operation.cpp b/python/modules/IcePy/Operation.cpp index 7898b52daeb..b14c3f12998 100644 --- a/python/modules/IcePy/Operation.cpp +++ b/python/modules/IcePy/Operation.cpp @@ -3826,7 +3826,7 @@ Upcall::dispatchImpl(PyObject* servant, const string& dispatchName, PyObject* ar // // Ignore the return value of _iceDispatch -- it will use the dispatch callback. // - PyObjectHandle ignore = PyObject_Call(dispatchMethod.get(), dispatchArgs.get(), 0); + PyObjectHandle ignored = PyObject_Call(dispatchMethod.get(), dispatchArgs.get(), 0); // // Check for exceptions. |