summaryrefslogtreecommitdiff
path: root/gr-fec/lib/depuncture_bb_impl.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gr-fec/lib/depuncture_bb_impl.cc')
-rw-r--r--gr-fec/lib/depuncture_bb_impl.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-fec/lib/depuncture_bb_impl.cc b/gr-fec/lib/depuncture_bb_impl.cc
index d5a765f2a2..b0e17ea2bd 100644
--- a/gr-fec/lib/depuncture_bb_impl.cc
+++ b/gr-fec/lib/depuncture_bb_impl.cc
@@ -26,8 +26,8 @@ namespace fec {
depuncture_bb::sptr
depuncture_bb::make(int puncsize, int puncpat, int delay, uint8_t symbol)
{
- return gnuradio::get_initial_sptr(
- new depuncture_bb_impl(puncsize, puncpat, delay, symbol));
+ return gnuradio::make_block_sptr<depuncture_bb_impl>(
+ puncsize, puncpat, delay, symbol);
}
depuncture_bb_impl::depuncture_bb_impl(int puncsize,