diff options
author | Eric Blossom <eb@comsec.com> | 2010-08-03 13:36:18 -0700 |
---|---|---|
committer | Eric Blossom <eb@comsec.com> | 2010-08-03 13:43:42 -0700 |
commit | 0a9b999b5cce596f4de05828005f698047e14ce9 (patch) | |
tree | 3d77eabfdc798322a13cceb9253da152470bdbd9 /gr-atsc/src/lib/atsc_field_sync_mux.cc | |
parent | fa56c39802a82e6e0e730813a57e86e1aea09a24 (diff) |
Modify all block factories to use gnuradio::get_initial_sptr.
Diffstat (limited to 'gr-atsc/src/lib/atsc_field_sync_mux.cc')
-rw-r--r-- | gr-atsc/src/lib/atsc_field_sync_mux.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-atsc/src/lib/atsc_field_sync_mux.cc b/gr-atsc/src/lib/atsc_field_sync_mux.cc index 526599aed2..3d0e20a1c9 100644 --- a/gr-atsc/src/lib/atsc_field_sync_mux.cc +++ b/gr-atsc/src/lib/atsc_field_sync_mux.cc @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2006 Free Software Foundation, Inc. + * Copyright 2006,2010 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -33,7 +33,7 @@ atsc_field_sync_mux_sptr atsc_make_field_sync_mux() { - return atsc_field_sync_mux_sptr(new atsc_field_sync_mux()); + return gnuradio::get_initial_sptr(new atsc_field_sync_mux()); } atsc_field_sync_mux::atsc_field_sync_mux() |