From 55709c131cec7cc28d4dc32706dfdd5470c1ef49 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 22 Jan 2016 11:22:39 +0100 Subject: Fix type in printf. --- src/audiocachefile.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/audiocachefile.cc') diff --git a/src/audiocachefile.cc b/src/audiocachefile.cc index 0a81ca4..ba8ff96 100644 --- a/src/audiocachefile.cc +++ b/src/audiocachefile.cc @@ -79,7 +79,7 @@ void AudioCacheFile::readChunk(const CacheChannels& channels, if(pos > sf_info.frames) { - printf("pos (%d) > sf_info.frames (%d)\n", pos, (int)sf_info.frames); + printf("pos (%d) > sf_info.frames (%d)\n", (int)pos, (int)sf_info.frames); return; } -- cgit v1.2.3