diff options
author | Bernard Normier <bernard@zeroc.com> | 2012-12-26 19:08:48 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2012-12-26 19:08:48 +0000 |
commit | ee483bab1e0d0e6acdb0310007757c00d10f64c2 (patch) | |
tree | 425ca084bce7c1b016c4a9f64e24a0e8cbc7542d /py/modules/IcePy/Connection.cpp | |
parent | Fixed (ICE-5035) - Added check to detect mingw compiler (diff) | |
download | ice-ee483bab1e0d0e6acdb0310007757c00d10f64c2.tar.bz2 ice-ee483bab1e0d0e6acdb0310007757c00d10f64c2.tar.xz ice-ee483bab1e0d0e6acdb0310007757c00d10f64c2.zip |
Fixed GCC warnings; added -Werror to GCC builds
Diffstat (limited to 'py/modules/IcePy/Connection.cpp')
-rw-r--r-- | py/modules/IcePy/Connection.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/modules/IcePy/Connection.cpp b/py/modules/IcePy/Connection.cpp index 67e93114f85..1cb84c4271e 100644 --- a/py/modules/IcePy/Connection.cpp +++ b/py/modules/IcePy/Connection.cpp @@ -72,7 +72,7 @@ extern "C" static PyObject* connectionCompare(ConnectionObject* c1, PyObject* other, int op) { - bool result; + bool result = false; if(PyObject_TypeCheck(other, &ConnectionType)) { |