diff options
Diffstat (limited to 'gr-fft/lib/goertzel_fc_impl.cc')
-rw-r--r-- | gr-fft/lib/goertzel_fc_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fft/lib/goertzel_fc_impl.cc b/gr-fft/lib/goertzel_fc_impl.cc index e932ca0a55..b2c9508d08 100644 --- a/gr-fft/lib/goertzel_fc_impl.cc +++ b/gr-fft/lib/goertzel_fc_impl.cc @@ -20,7 +20,7 @@ namespace fft { goertzel_fc::sptr goertzel_fc::make(int rate, int len, float freq) { - return gnuradio::get_initial_sptr(new goertzel_fc_impl(rate, len, freq)); + return gnuradio::make_block_sptr<goertzel_fc_impl>(rate, len, freq); } goertzel_fc_impl::goertzel_fc_impl(int rate, int len, float freq) |