Changeset bc6b2af


Ignore:
Timestamp:
Jan 31, 2015, 12:21:40 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:
c952f42
Parents:
4d6024f
Message:

src/io/source_wavread.c: avoid orphan parenthesis

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/io/source_wavread.c

    r4d6024f rbc6b2af  
    220220#ifndef HAVE_WIN_HACKS
    221221    AUBIO_ERR("source_wavread: short read (%zd instead of %zd) in %s\n",
     222        bytes_read, bytes_expected, s->path);
    222223#else // mingw does not know about %zd...
    223224    AUBIO_ERR("source_wavread: short read (%d instead of %d) in %s\n",
     225        bytes_read, bytes_expected, s->path);
    224226#endif
    225         bytes_read, bytes_expected, s->path);
    226227    goto beach;
    227228  }
Note: See TracChangeset for help on using the changeset viewer.