cmDspKr.c : Fixed uninitialized variable warning (n in _cmDspRecdPlayExec()).

This commit is contained in:
kevin 2013-12-12 12:22:21 -05:00
parent 0a12858783
commit 7d7448ba55

View File

@ -2608,7 +2608,7 @@ cmDspRC_t _cmDspRecdPlayExec(cmDspCtx_t* ctx, cmDspInst_t* inst, const cmDspEvt_
const cmSample_t* x[ p->chCnt ]; const cmSample_t* x[ p->chCnt ];
cmSample_t* y[ p->chCnt ]; cmSample_t* y[ p->chCnt ];
unsigned n; unsigned n = 0;
unsigned i; unsigned i;
unsigned actChCnt = 0; unsigned actChCnt = 0;