diff options
Diffstat (limited to 'gr-blocks/lib/repack_bits_bb_impl.cc')
-rw-r--r-- | gr-blocks/lib/repack_bits_bb_impl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-blocks/lib/repack_bits_bb_impl.cc b/gr-blocks/lib/repack_bits_bb_impl.cc index d78a4fd8f5..e23b7f7297 100644 --- a/gr-blocks/lib/repack_bits_bb_impl.cc +++ b/gr-blocks/lib/repack_bits_bb_impl.cc @@ -24,8 +24,8 @@ repack_bits_bb::sptr repack_bits_bb::make(int k, bool align_output, endianness_t endianness) { - return gnuradio::get_initial_sptr( - new repack_bits_bb_impl(k, l, len_tag_key, align_output, endianness)); + return gnuradio::make_block_sptr<repack_bits_bb_impl>( + k, l, len_tag_key, align_output, endianness); } repack_bits_bb_impl::repack_bits_bb_impl(int k, |