Commit 9fadf0b2 authored by malosek's avatar malosek

fixed minor gcc warning in src/pgm_socket.cpp

parent d6da7903
...@@ -46,10 +46,10 @@ zmq::pgm_socket_t::pgm_socket_t (bool receiver_, const options_t &options_) : ...@@ -46,10 +46,10 @@ zmq::pgm_socket_t::pgm_socket_t (bool receiver_, const options_t &options_) :
options (options_), options (options_),
receiver (receiver_), receiver (receiver_),
pgm_msgv (NULL), pgm_msgv (NULL),
pgm_msgv_len (0),
nbytes_rec (0), nbytes_rec (0),
nbytes_processed (0), nbytes_processed (0),
pgm_msgv_processed (0), pgm_msgv_processed (0)
pgm_msgv_len (0)
{ {
} }
......
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