From: Paul Brossier Date: Sun, 21 Sep 2014 14:40:34 +0000 (-0300) Subject: src/io/source_sndfile.c: cast to uint_t for now X-Git-Tag: 0.4.2~52 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=74dcddbd70876888474eedb22c6876f904e86045;p=aubio.git src/io/source_sndfile.c: cast to uint_t for now --- diff --git a/src/io/source_sndfile.c b/src/io/source_sndfile.c index f1be9354..e567a239 100644 --- a/src/io/source_sndfile.c +++ b/src/io/source_sndfile.c @@ -270,8 +270,8 @@ uint_t aubio_source_sndfile_seek (aubio_source_sndfile_t * s, uint_t pos) { return AUBIO_FAIL; } if (sf_ret != resampled_pos) { - AUBIO_ERR("source_sndfile: Tried seeking %s at %d, but got %lld: %s\n", - s->path, resampled_pos, sf_ret, sf_strerror (NULL)); + AUBIO_ERR("source_sndfile: Tried seeking %s at %d, but got %d: %s\n", + s->path, resampled_pos, (uint_t)sf_ret, sf_strerror (NULL)); return AUBIO_FAIL; } return AUBIO_OK;