0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-29 16:45:51 +08:00

fixed minor gcc warning in src/pgm_socket.cpp

This commit is contained in:
malosek 2009-12-31 16:18:45 +01:00
parent d6da7903d0
commit 9fadf0b218

View File

@ -46,10 +46,10 @@ zmq::pgm_socket_t::pgm_socket_t (bool receiver_, const options_t &options_) :
options (options_),
receiver (receiver_),
pgm_msgv (NULL),
pgm_msgv_len (0),
nbytes_rec (0),
nbytes_processed (0),
pgm_msgv_processed (0),
pgm_msgv_len (0)
pgm_msgv_processed (0)
{
}