Skip to content

Commit

Permalink
fec: more warning cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
osh committed Apr 6, 2015
1 parent 65adeff commit 00bbfcd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions gr-fec/include/gnuradio/fec/tpc_decoder.h
Expand Up @@ -80,8 +80,8 @@ class FEC_API tpc_decoder : public generic_decoder {
int outputSize;
int inputSize;

int codeword_M;
int codeword_N;
uint32_t codeword_M;
uint32_t codeword_N;

int mInit, nInit;

Expand All @@ -100,7 +100,7 @@ class FEC_API tpc_decoder : public generic_decoder {
std::vector<float> output_c_rows;
std::vector<float> output_c_cols;

int numInitLoadIter;
uint32_t numInitLoadIter;
int numInitRemaining;
int output_c_col_idx;

Expand Down
4 changes: 2 additions & 2 deletions gr-fec/lib/tpc_decoder.cc
Expand Up @@ -752,8 +752,8 @@ template <typename T> int tpc_decoder::sgn(T val) {
void tpc_decoder::generic_work(void *inBuffer, void *outBuffer) {
const float *inPtr = (const float *) inBuffer;
unsigned char *out = (unsigned char *) outBuffer;

int m, n, ii;
unsigned int m, n, ii;
int iter;

for(ii=0; ii<numInitLoadIter; ii++) {
Expand Down

0 comments on commit 00bbfcd

Please sign in to comment.