From 74dcddbd70876888474eedb22c6876f904e86045 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sun, 21 Sep 2014 11:40:34 -0300 Subject: [PATCH] src/io/source_sndfile.c: cast to uint_t for now --- src/io/source_sndfile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.11.0