Bugzilla – Bug 158757
festival-1.95-18: undefined C code
Last modified: 2006-03-21 15:32:54 UTC
I just tried to compile package festival-1.95-18 with the GNU C compiler. It said rateconv.cc:387: warning: operation on "outidx" may be undefined The source code is fir_stereo(inp + inoffset + inbaseidx, coep + cycctr * firlen, firlen, outp + outidx++, outp + outidx++); I agree with the compiler. Suggest new code fir_stereo(inp + inoffset + inbaseidx, coep + cycctr * firlen, firlen, outp + outidx, outp + outidx + 1); outidx += 2;
submitted.