diff options
author | michaelld | 2006-08-17 19:23:48 +0000 |
---|---|---|
committer | michaelld | 2006-08-17 19:23:48 +0000 |
commit | 4d9e68f1463e175ba1c4d1a0f19dfbe5cc90c681 (patch) | |
tree | 7a8b5a9cb3274cfc53e99aa8c943a5dcfeb45f5c | |
parent | dee26d1c3360303a1d9db6941d214ae443399eb5 (diff) | |
download | gnuradio-4d9e68f1463e175ba1c4d1a0f19dfbe5cc90c681.tar.gz gnuradio-4d9e68f1463e175ba1c4d1a0f19dfbe5cc90c681.tar.bz2 gnuradio-4d9e68f1463e175ba1c4d1a0f19dfbe5cc90c681.zip |
Fix for ticket:36 , now (hopefully) does "make check" properly on all
platforms.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@3342 221aa14e-8319-0410-a670-987f0aec2ac5
-rw-r--r-- | gr-error-correcting-codes/src/lib/libecc/tests/qa_encoder_convolutional_ic1_ic1.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-error-correcting-codes/src/lib/libecc/tests/qa_encoder_convolutional_ic1_ic1.cc b/gr-error-correcting-codes/src/lib/libecc/tests/qa_encoder_convolutional_ic1_ic1.cc index bba7dce7c..a229e1d93 100644 --- a/gr-error-correcting-codes/src/lib/libecc/tests/qa_encoder_convolutional_ic1_ic1.cc +++ b/gr-error-correcting-codes/src/lib/libecc/tests/qa_encoder_convolutional_ic1_ic1.cc @@ -270,7 +270,7 @@ qa_encoder_convolutional_ic1_ic1::t1 // start state is 0, same feedback, no termination const static int t2_code_generator[] = {1, 0, 0, 1, 5, 6}; -const static size_t t2_code_feedback[] = {0, 0, 0, 0, 7, 7}; +const static int t2_code_feedback[] = {0, 0, 0, 0, 7, 7}; const static int t2_encode_soai = 1; const static char t2_in_0[] = @@ -1285,7 +1285,7 @@ qa_encoder_convolutional_ic1_ic1::t24 // start state is 0, same feedback, no termination const static int t25_code_generator[] = {1, 0, 0, 1, 5, 6}; -const static size_t t25_code_feedback[] = {0, 0, 0, 0, 7, 7}; +const static int t25_code_feedback[] = {0, 0, 0, 0, 7, 7}; const static int t25_encode_soai = 1; const static char t25_in_0[] = |