diff options
author | mormj <mormjb@gmail.com> | 2020-08-21 08:08:55 -0400 |
---|---|---|
committer | Martin Braun <martin@gnuradio.org> | 2020-08-24 07:35:27 -0700 |
commit | f871040e8129ccf7b0392aee3744d9867ffa0a1a (patch) | |
tree | 628d9239fc32fea9ff7f66b56b5524d999b9862e | |
parent | 7395911b276c48d71cfb148bdb85764e35456523 (diff) |
blocks: fix typo, artifact of log2_l_type renaming
-rw-r--r-- | gr-blocks/lib/packed_to_unpacked_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-blocks/lib/packed_to_unpacked_impl.cc b/gr-blocks/lib/packed_to_unpacked_impl.cc index f516f1a8a3..abbb3037ba 100644 --- a/gr-blocks/lib/packed_to_unpacked_impl.cc +++ b/gr-blocks/lib/packed_to_unpacked_impl.cc @@ -139,7 +139,7 @@ int packed_to_unpacked_impl<T>::general_work(int noutput_items, // printf("almost got to end\n"); assert(ninput_items[m] >= - (int)((d_index + (this->d_bits_per_type - 1)) >> this->d_log2_l_type)); + (int)((d_index + (this->d_bits_per_type - 1)) >> this->log2_l_type())); } d_index = index_tmp; |