diff options
Diffstat (limited to 'src/audiocachefile.cc')
-rw-r--r-- | src/audiocachefile.cc | 2 |
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; |