diff options
author | Clayton Smith <argilo@gmail.com> | 2020-02-08 13:52:21 -0500 |
---|---|---|
committer | Michael Dickens <michael.dickens@ettus.com> | 2020-02-10 10:38:05 -0500 |
commit | 838d081918f8e5ee3f28273237d8b74a8c0b9d9b (patch) | |
tree | 4915ce876ecd6428e4911fd8237068e0ba9b7454 /gr-fec/lib/cc_encoder_impl.h | |
parent | 4ca351cfba0f8c81b02b3c665494c5a570ea8540 (diff) |
gr-fec: fix compiler warning
Diffstat (limited to 'gr-fec/lib/cc_encoder_impl.h')
-rw-r--r-- | gr-fec/lib/cc_encoder_impl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fec/lib/cc_encoder_impl.h b/gr-fec/lib/cc_encoder_impl.h index 53fd2eae9d..414ce30a1e 100644 --- a/gr-fec/lib/cc_encoder_impl.h +++ b/gr-fec/lib/cc_encoder_impl.h @@ -34,7 +34,7 @@ private: unsigned int d_rate; unsigned int d_k; std::vector<int> d_polys; - int d_start_state; + unsigned int d_start_state; cc_mode_t d_mode; int d_padding; int d_output_size; |