diff options
author | Daniel Grambihler <af7ss.ham@gmail.com> | 2018-07-22 17:28:39 -0700 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-11-02 00:10:59 +0100 |
commit | 4cbe4ba15def9e0c40e6ea628df58ee55868307a (patch) | |
tree | 0a1626fe615cdc655a2a6e5a54c527c1c73527ac /gr-digital/lib/additive_scrambler_bb_impl.cc | |
parent | caa9ded4bbb11a65ea60e3df0e239a771f8ca1fc (diff) |
Cosmetic change to additive_scrambler_bb_impl.cc
There was a stray semicolon (line #103) on the closing brace of an if-block. Just an extra null statement after the if, so not a functional change.
Diffstat (limited to 'gr-digital/lib/additive_scrambler_bb_impl.cc')
-rw-r--r-- | gr-digital/lib/additive_scrambler_bb_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-digital/lib/additive_scrambler_bb_impl.cc b/gr-digital/lib/additive_scrambler_bb_impl.cc index d1112ee5f4..2d49126541 100644 --- a/gr-digital/lib/additive_scrambler_bb_impl.cc +++ b/gr-digital/lib/additive_scrambler_bb_impl.cc @@ -100,7 +100,7 @@ namespace gr { int reset_pos = tags[i].offset - nitems_read(0); if (reset_pos < reset_index && reset_pos > last_reset_index) { reset_index = reset_pos; - }; + } } } else { if (last_reset_index == -1) { |