summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/lib/block_executor.cc
diff options
context:
space:
mode:
authorMarcus Müller <marcus@hostalia.de>2017-06-24 17:43:22 +0200
committerMarcus Müller <marcus@hostalia.de>2017-06-24 17:44:53 +0200
commit963c376ba23fbcb7c4041b8ce5ff1d30b33af36e (patch)
treea2393332a049616d240323d236abba203627ce66 /gnuradio-runtime/lib/block_executor.cc
parentb57a37f7c676542f08a27d3f141f4d9ed2ab1132 (diff)
fix: can't pass non-enum integer as enum parameter (#1337)
Diffstat (limited to 'gnuradio-runtime/lib/block_executor.cc')
-rw-r--r--gnuradio-runtime/lib/block_executor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnuradio-runtime/lib/block_executor.cc b/gnuradio-runtime/lib/block_executor.cc
index 585e65fc6e..5c23df39a5 100644
--- a/gnuradio-runtime/lib/block_executor.cc
+++ b/gnuradio-runtime/lib/block_executor.cc
@@ -1,6 +1,6 @@
/* -*- c++ -*- */
/*
- * Copyright 2004,2008-2010,2013 Free Software Foundation, Inc.
+ * Copyright 2004,2008-2010,2013,2017 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
@@ -103,8 +103,8 @@ namespace gr {
switch(policy) {
case block::TPP_DONT:
+ case block::TPP_CUSTOM:
return true;
- break;
case block::TPP_ALL_TO_ALL:
// every tag on every input propogates to everyone downstream
for(int i = 0; i < d->ninputs(); i++) {