summaryrefslogtreecommitdiff
path: root/gr-gcell/src
diff options
context:
space:
mode:
Diffstat (limited to 'gr-gcell/src')
-rw-r--r--gr-gcell/src/gcell_fft_vcc.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-gcell/src/gcell_fft_vcc.cc b/gr-gcell/src/gcell_fft_vcc.cc
index 8bbcfb2b9..ae40b6fad 100644
--- a/gr-gcell/src/gcell_fft_vcc.cc
+++ b/gr-gcell/src/gcell_fft_vcc.cc
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2004,2007,2008 Free Software Foundation, Inc.
+ * Copyright 2004,2007,2008,2010 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -71,7 +71,7 @@ gcell_make_fft_vcc(int fft_size, bool forward, const std::vector<float> &window,
gcell_fft_vcc_sptr
gcell_make_fft_vcc(int fft_size, bool forward, const std::vector<float> &window, bool shift)
{
- return gcell_fft_vcc_sptr (new gcell_fft_vcc(fft_size, forward, window, shift));
+ return gnuradio::get_initial_sptr(new gcell_fft_vcc(fft_size, forward, window, shift));
}
#endif