summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/stream_to_streams_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/lib/stream_to_streams_impl.cc')
-rw-r--r--gr-blocks/lib/stream_to_streams_impl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/stream_to_streams_impl.cc b/gr-blocks/lib/stream_to_streams_impl.cc
index a81cb82695..ad63547458 100644
--- a/gr-blocks/lib/stream_to_streams_impl.cc
+++ b/gr-blocks/lib/stream_to_streams_impl.cc
@@ -21,7 +21,7 @@ namespace blocks {
stream_to_streams::sptr stream_to_streams::make(size_t itemsize, size_t nstreams)
{
- return gnuradio::get_initial_sptr(new stream_to_streams_impl(itemsize, nstreams));
+ return gnuradio::make_block_sptr<stream_to_streams_impl>(itemsize, nstreams);
}
stream_to_streams_impl::stream_to_streams_impl(size_t itemsize, size_t nstreams)