Changeset 74dcddb for src


Ignore:
Timestamp:
Sep 21, 2014, 4:40:34 PM (10 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:
c18981e
Parents:
11b49d7
Message:

src/io/source_sndfile.c: cast to uint_t for now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_sndfile.c

    r11b49d7 r74dcddb  
    271271  }
    272272  if (sf_ret != resampled_pos) {
    273     AUBIO_ERR("source_sndfile: Tried seeking %s at %d, but got %lld: %s\n",
    274         s->path, resampled_pos, sf_ret, sf_strerror (NULL));
     273    AUBIO_ERR("source_sndfile: Tried seeking %s at %d, but got %d: %s\n",
     274        s->path, resampled_pos, (uint_t)sf_ret, sf_strerror (NULL));
    275275    return AUBIO_FAIL;
    276276  }
Note: See TracChangeset for help on using the changeset viewer.