Changeset 6f10064 for examples


Ignore:
Timestamp:
Nov 13, 2007, 10:00:23 AM (16 years ago)
Author:
Paul Brossier <piem@piem.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:
15b97d9
Parents:
ec0d43c
Message:

utils.c: avoid signed/unsigned comparison

File:
1 edited

Legend:

Unmodified
Added
Removed
  • examples/utils.c

    rec0d43c r6f10064  
    414414    }
    415415  }
    416   for (i = 0; i < frames_delay; i++) {
     416  for (i = 0; (signed)i < frames_delay; i++) {
    417417    process_func(ibuf->data, obuf->data, overlap_size);
    418418    print();
Note: See TracChangeset for help on using the changeset viewer.