diff options
author | Tom Rondeau <tom@trondeau.com> | 2015-09-28 06:43:54 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2015-10-16 15:48:46 -0400 |
commit | 75dfcd409efd1d410609cfd621b2912d877e4656 (patch) | |
tree | d498544e31954ddabb84930d47ca4f542b0cdb48 | |
parent | 9bf9b47dc713f76a5a105ed274aa74ecb0568baa (diff) |
ctrlport: fixed copy-paste error for setting short data.
-rw-r--r-- | gnuradio-runtime/include/gnuradio/rpcregisterhelpers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/include/gnuradio/rpcregisterhelpers.h b/gnuradio-runtime/include/gnuradio/rpcregisterhelpers.h index f82f5ed0aa..adf868df7d 100644 --- a/gnuradio-runtime/include/gnuradio/rpcregisterhelpers.h +++ b/gnuradio-runtime/include/gnuradio/rpcregisterhelpers.h @@ -196,7 +196,7 @@ public: void post(pmt::pmt_t which_port, pmt::pmt_t msg) { - (rpcextractor_base<T,short>::_source->*rpcextractor_base<T,char>::_func) + (rpcextractor_base<T,short>::_source->*rpcextractor_base<T,short>::_func) (static_cast<short>(pmt::to_long(msg))); } }; |