diff options
author | Tom Rondeau | 2010-11-08 20:03:21 -0500 |
---|---|---|
committer | Tom Rondeau | 2010-11-08 20:03:21 -0500 |
commit | ec79e6f688c0ef94e66c938eba24c8b95e9856ba (patch) | |
tree | 580ecc4fb2ba8c0ef00c95e23ed07e8d43fcaae3 /gnuradio-core | |
parent | ab8c921bf73b61c19305bc0bf1fc4d26b110779e (diff) | |
download | gnuradio-ec79e6f688c0ef94e66c938eba24c8b95e9856ba.tar.gz gnuradio-ec79e6f688c0ef94e66c938eba24c8b95e9856ba.tar.bz2 gnuradio-ec79e6f688c0ef94e66c938eba24c8b95e9856ba.zip |
Burned by another copy-paste error. Correctly checking and acting if its a sink.
Diffstat (limited to 'gnuradio-core')
-rw-r--r-- | gnuradio-core/src/lib/runtime/gr_block_executor.cc | 2 |
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; } |