Changeset 95af88b


Ignore:
Timestamp:
Mar 17, 2017, 6:59:06 PM (7 years ago)
Author:
Paul Brossier <piem@piem.org>
Branches:
sampler
Children:
a6356d4
Parents:
218f670
Message:

src/synth/sampler.c: avoid declaration after statement, use () for pragma

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/synth/sampler.c

    r218f670 r95af88b  
    3434#else
    3535#ifdef _MSC_VER
    36 #pragma message "compiling sampler without threading"
     36#pragma message ("WARNING: compiling sampler without threading")
    3737#else
    3838#warning "compiling sampler without threading"
     
    545545    aubio_sampler_do_eof(s);
    546546    if (s->loop && s->perfectloop) {
     547      uint_t partialread;
    547548      fvec_t tmpout; tmpout.data = output->data + *read;
    548549      tmpout.length = output->length - *read;
    549       uint_t partialread;
    550550      while (aubio_timestretch_get_available(s->ts) < (sint_t)tmpout.length
    551551          && s->eof_remaining == 0) {
Note: See TracChangeset for help on using the changeset viewer.