From 253badedf7e4b4347dbed33ecb69c125e65b5426 Mon Sep 17 00:00:00 2001 From: okcsampson Date: Mon, 12 Jun 2017 17:42:48 +0000 Subject: [PATCH] Fix loop bug in ofdm.c git-svn-id: https://svn.code.sf.net/p/freetel/code@3185 01035d8c-6547-0410-b346-abe4f91aad63 --- codec2-dev/src/ofdm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codec2-dev/src/ofdm.c b/codec2-dev/src/ofdm.c index ed7fdefc..a77491ce 100644 --- a/codec2-dev/src/ofdm.c +++ b/codec2-dev/src/ofdm.c @@ -321,7 +321,7 @@ void ofdm_mod(struct OFDM *ofdm, COMP result[OFDM_SAMPLESPERFRAME], const int *t complex float tx[OFDM_SAMPLESPERFRAME]; complex float tx_sym_lin[length]; int dibit[2]; - int s, j; + int s, i; if (OFDM_BPS == 1) { /* Here we will have Nbitsperframe / 1 */ -- 2.25.1