summaryrefslogtreecommitdiff
path: root/src/audiocachefile.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2016-01-22 11:29:59 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2016-01-22 11:29:59 +0100
commit2f5237be2263fe11576d57b838690011a7af5a00 (patch)
tree8cb1717da3f4564342f40f2c97d65913c2293cb4 /src/audiocachefile.cc
parent55709c131cec7cc28d4dc32706dfdd5470c1ef49 (diff)
Fixed more type mismatch warnings.
Diffstat (limited to 'src/audiocachefile.cc')
-rw-r--r--src/audiocachefile.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audiocachefile.cc b/src/audiocachefile.cc
index ba8ff96..942afd3 100644
--- a/src/audiocachefile.cc
+++ b/src/audiocachefile.cc
@@ -77,7 +77,7 @@ void AudioCacheFile::readChunk(const CacheChannels& channels,
{
assert(fh != nullptr); // File handle must never be nullptr
- if(pos > sf_info.frames)
+ if((int)pos > sf_info.frames)
{
printf("pos (%d) > sf_info.frames (%d)\n", (int)pos, (int)sf_info.frames);
return;