summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Gilbert <mrjacobagilbert@gmail.com>2018-02-07 18:44:43 -0800
committerMarcus Müller <marcus.mueller@ettus.com>2018-03-30 16:50:31 +0200
commit761ac7f2da2fd5fd96c5eac8199f55150b0d6350 (patch)
treea72f091a000dab263b4b744ee1831376389fa046
parent74b2ec5ff215cc55fd4409e36cac3c54a36327b6 (diff)
pmt: fix for error in pmt::equal() when comparing uniform vectors
-rw-r--r--gnuradio-runtime/lib/pmt/pmt.cc2
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...