diff options
author | Tom Rondeau <tom@trondeau.com> | 2015-05-06 11:12:51 -0400 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2015-05-06 11:12:51 -0400 |
commit | 08932c2585ad0e1b77e830e3d56108d196e4ec5a (patch) | |
tree | e2db7907f652a43234a3b21e89ef4cd4740d15ee /gnuradio-runtime/lib/controlport | |
parent | f3743ffacf7a35d8f18f6b2fb7955bb339363e6b (diff) |
controlport: this fixes a complaint by newer versions of Boost.
Diffstat (limited to 'gnuradio-runtime/lib/controlport')
-rw-r--r-- | gnuradio-runtime/lib/controlport/thrift/rpcpmtconverters_thrift.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/controlport/thrift/rpcpmtconverters_thrift.cc b/gnuradio-runtime/lib/controlport/thrift/rpcpmtconverters_thrift.cc index 19da05f787..cc8804f79d 100644 --- a/gnuradio-runtime/lib/controlport/thrift/rpcpmtconverters_thrift.cc +++ b/gnuradio-runtime/lib/controlport/thrift/rpcpmtconverters_thrift.cc @@ -162,7 +162,7 @@ rpcpmtconverter::to_pmt_int_f::operator()(const GNURadio::Knob& knob) pmt::pmt_t rpcpmtconverter::to_pmt_long_f::operator()(const GNURadio::Knob& knob) { - return pmt::mp(knob.value.a_long); + return pmt::from_long(knob.value.a_long); } pmt::pmt_t |