diff options
author | Jacob Gilbert <mrjacobagilbert@gmail.com> | 2018-02-07 18:44:43 -0800 |
---|---|---|
committer | Marcus Müller <marcus.mueller@ettus.com> | 2018-03-30 16:50:31 +0200 |
commit | 761ac7f2da2fd5fd96c5eac8199f55150b0d6350 (patch) | |
tree | a72f091a000dab263b4b744ee1831376389fa046 | |
parent | 74b2ec5ff215cc55fd4409e36cac3c54a36327b6 (diff) |
pmt: fix for error in pmt::equal() when comparing uniform vectors
-rw-r--r-- | gnuradio-runtime/lib/pmt/pmt.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/pmt/pmt.cc b/gnuradio-runtime/lib/pmt/pmt.cc index 3b92481549..6c37fa9fd2 100644 --- a/gnuradio-runtime/lib/pmt/pmt.cc +++ b/gnuradio-runtime/lib/pmt/pmt.cc @@ -1163,7 +1163,7 @@ equal(const pmt_t& x, const pmt_t& y) len_x) == 0) return true; - return true; + return false; } // FIXME add other cases here... |