Commit c6665f46 authored by malosek's avatar malosek

set rc to 0 in its declaration (pyzmq.cpp)

parent 3b2c3cae
...@@ -139,7 +139,7 @@ PyObject *socket_setsockopt (socket_t *self, PyObject *args, PyObject *kwdict) ...@@ -139,7 +139,7 @@ PyObject *socket_setsockopt (socket_t *self, PyObject *args, PyObject *kwdict)
return NULL; return NULL;
} }
int rc; int rc = 0;
switch (option) { switch (option) {
case ZMQ_HWM: case ZMQ_HWM:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment