Changeset c952f42 for src


Ignore:
Timestamp:
Jan 31, 2015, 12:40:16 PM (9 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:
afa3e1e
Parents:
bc6b2af
Message:

src/io/source_wavread.c: cast size_t to int to avoid warning on win64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_wavread.c

    rbc6b2af rc952f42  
    223223#else // mingw does not know about %zd...
    224224    AUBIO_ERR("source_wavread: short read (%d instead of %d) in %s\n",
    225         bytes_read, bytes_expected, s->path);
     225        (int)bytes_read, (int)bytes_expected, s->path);
    226226#endif
    227227    goto beach;
Note: See TracChangeset for help on using the changeset viewer.