diff options
Diffstat (limited to 'gr-blocks/lib/repeat_impl.cc')
-rw-r--r-- | gr-blocks/lib/repeat_impl.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-blocks/lib/repeat_impl.cc b/gr-blocks/lib/repeat_impl.cc index 539b9d4b58..3717290687 100644 --- a/gr-blocks/lib/repeat_impl.cc +++ b/gr-blocks/lib/repeat_impl.cc @@ -32,7 +32,8 @@ repeat_impl::repeat_impl(size_t itemsize, int interp) d_interp(interp) { message_port_register_in(pmt::mp("interpolation")); - set_msg_handler(pmt::mp("interpolation"), [this](pmt::pmt_t msg) { this->msg_set_interpolation(msg); }); + set_msg_handler(pmt::mp("interpolation"), + [this](pmt::pmt_t msg) { this->msg_set_interpolation(msg); }); } void repeat_impl::msg_set_interpolation(pmt::pmt_t msg) |