diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2016-05-01 21:37:12 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2016-05-01 21:37:12 -0700 |
commit | 5052b5735124bcae0568ec410df2785784e2541b (patch) | |
tree | 62dc16e974ffce8e8750bf1f0ec8b5126a1adf8e /gnuradio-runtime | |
parent | b5b9334286a74aa92ff48ed63ffa6e8349881bf0 (diff) | |
parent | 75b6e340f82e59d00badeba70263e755075b49c0 (diff) |
Merge branch 'maint'
Diffstat (limited to 'gnuradio-runtime')
-rw-r--r-- | gnuradio-runtime/lib/pmt/pmt_serialize.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/pmt/pmt_serialize.cc b/gnuradio-runtime/lib/pmt/pmt_serialize.cc index 6147082a21..12a97b974c 100644 --- a/gnuradio-runtime/lib/pmt/pmt_serialize.cc +++ b/gnuradio-runtime/lib/pmt/pmt_serialize.cc @@ -297,7 +297,7 @@ serialize(pmt_t obj, std::streambuf &sb) } if(is_real(obj)) { - float i = to_double(obj); + double i = to_double(obj); ok = serialize_untagged_u8(PST_DOUBLE, sb); ok &= serialize_untagged_f64(i, sb); return ok; |