diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-01-22 11:22:39 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-01-22 11:22:39 +0100 |
commit | 55709c131cec7cc28d4dc32706dfdd5470c1ef49 (patch) | |
tree | 7a85c70436f222c5ec2d5d20fbb745b6dadbfc90 /src | |
parent | f6cf6bbeb28f4691a5072fe64672f2609a8393a4 (diff) |
Fix type in printf.
Diffstat (limited to 'src')
-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 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; } |