Ignore:
Timestamp:
Jun 3, 2006, 5:13:07 PM (18 years ago)
Author:
Paul Brossier <piem@altern.org>
Branches:
feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
Children:
0b9e1da5
Parents:
14aae81
Message:

fix signed/unsigned mismatches in examples
fix signed/unsigned mismatches in examples

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/aubiotrack.c

    r14aae81 raf35ed0  
    3535  unsigned int j;       /*frames*/
    3636  smpl_t * btoutput = out->data[0];
    37   for (j=0;j<nframes;j++) {
     37  for (j=0;j<(unsigned)nframes;j++) {
    3838    if(usejack) {
    3939      for (i=0;i<channels;i++) {
Note: See TracChangeset for help on using the changeset viewer.