mirror of
https://github.com/taglib/taglib.git
synced 2025-07-19 13:34:19 -04:00
Use uintptr_t
for buffer size calculations
This commit is contained in:
@ -448,7 +448,7 @@ void SHN::File::read(AudioProperties::ReadStyle propertiesStyle)
|
||||
// auto chunkSize = read_uint_big32(header_bytes, 4);
|
||||
|
||||
const auto chunkData = header_bytes + 8;
|
||||
const auto size = header_size - 8;
|
||||
const uintptr_t size = header_size - 8;
|
||||
|
||||
// WAVE
|
||||
if(chunkID == 'RIFF') {
|
||||
|
Reference in New Issue
Block a user