From 0bc7116e5227f95b7a5de944bc65c5a8b55e0ed5 Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Sun, 31 Oct 2010 18:09:19 -0400
Subject: Using pmt_eqv for key testing instead of == to make sure typing is
 worked out properly.

---
 gnuradio-core/src/lib/runtime/gr_block_detail.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'gnuradio-core/src')

diff --git a/gnuradio-core/src/lib/runtime/gr_block_detail.cc b/gnuradio-core/src/lib/runtime/gr_block_detail.cc
index 1007f13efd..effaf52697 100644
--- a/gnuradio-core/src/lib/runtime/gr_block_detail.cc
+++ b/gnuradio-core/src/lib/runtime/gr_block_detail.cc
@@ -222,7 +222,7 @@ gr_block_detail::get_tags_in_range(unsigned int which_output,
     }
 
     itemkey = pmt::pmt_tuple_ref(*itr, 2);
-    if((item_time >= start) && (item_time <= end) && (key == itemkey)) {
+    if((item_time >= start) && (item_time <= end) && pmt::pmt_eqv(key, itemkey)) {
       found_items.push_back(*itr);
     }
 
-- 
cgit v1.2.3