diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2014-04-21 11:51:39 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2014-04-22 15:07:42 -0700 |
commit | 6850d68a14d96fd160892567f793605ab427817b (patch) | |
tree | c70940f852a29dd291ff86bf42447334bca04eb5 /gr-zeromq/lib/pull_source_impl.cc | |
parent | 9833f3fb80c788d740dc1328899d50165cfdfa90 (diff) |
zeromq: renamed sink_pubsub to pub_sink
Diffstat (limited to 'gr-zeromq/lib/pull_source_impl.cc')
-rw-r--r-- | gr-zeromq/lib/pull_source_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-zeromq/lib/pull_source_impl.cc b/gr-zeromq/lib/pull_source_impl.cc index 637b529a72..d5b815ecce 100644 --- a/gr-zeromq/lib/pull_source_impl.cc +++ b/gr-zeromq/lib/pull_source_impl.cc @@ -43,7 +43,7 @@ namespace gr { gr::io_signature::make(1, 1, itemsize)), d_itemsize(itemsize) { - d_timeout = timeout >=0 ? (int)(timeout*1e6) : 0; + d_timeout = timeout >= 0 ? (int)(timeout*1e6) : 0; d_context = new zmq::context_t(1); d_socket = new zmq::socket_t(*d_context, ZMQ_PULL); d_socket->connect (address); |