summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rondeau <tom@trondeau.com>2015-09-28 06:43:54 -0400
committerTom Rondeau <tom@trondeau.com>2015-10-16 15:48:46 -0400
commit75dfcd409efd1d410609cfd621b2912d877e4656 (patch)
treed498544e31954ddabb84930d47ca4f542b0cdb48
parent9bf9b47dc713f76a5a105ed274aa74ecb0568baa (diff)
ctrlport: fixed copy-paste error for setting short data.
-rw-r--r--gnuradio-runtime/include/gnuradio/rpcregisterhelpers.h2
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)));
}
};