Browse Source

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

master
kevin 11 years ago
parent
commit
7d7448ba55
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      dsp/cmDspKr.c

+ 1
- 1
dsp/cmDspKr.c View File

2608
 
2608
 
2609
   const cmSample_t* x[ p->chCnt ];
2609
   const cmSample_t* x[ p->chCnt ];
2610
   cmSample_t*       y[ p->chCnt ];
2610
   cmSample_t*       y[ p->chCnt ];
2611
-  unsigned n;
2611
+  unsigned n = 0;
2612
   unsigned i;
2612
   unsigned i;
2613
   unsigned actChCnt = 0;
2613
   unsigned actChCnt = 0;
2614
 
2614
 

Loading…
Cancel
Save