summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rondeau2010-11-08 20:03:21 -0500
committerTom Rondeau2010-11-08 20:03:21 -0500
commitec79e6f688c0ef94e66c938eba24c8b95e9856ba (patch)
tree580ecc4fb2ba8c0ef00c95e23ed07e8d43fcaae3
parentab8c921bf73b61c19305bc0bf1fc4d26b110779e (diff)
downloadgnuradio-ec79e6f688c0ef94e66c938eba24c8b95e9856ba.tar.gz
gnuradio-ec79e6f688c0ef94e66c938eba24c8b95e9856ba.tar.bz2
gnuradio-ec79e6f688c0ef94e66c938eba24c8b95e9856ba.zip
Burned by another copy-paste error. Correctly checking and acting if its a sink.
-rw-r--r--gnuradio-core/src/lib/runtime/gr_block_executor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/runtime/gr_block_executor.cc b/gnuradio-core/src/lib/runtime/gr_block_executor.cc
index 7d19f44ab..804c9e197 100644
--- a/gnuradio-core/src/lib/runtime/gr_block_executor.cc
+++ b/gnuradio-core/src/lib/runtime/gr_block_executor.cc
@@ -94,7 +94,7 @@ propagate_tags(gr_block::TAG_PROPAGATION_POLICY policy, gr_block_detail *d,
// Move tags downstream
// if a sink, we don't need to move downstream;
// and do not bother if block uses TAGS_NONE attribute
- if(!d->sink_p()) {
+ if(d->sink_p()) {
return;
}