mirror of
https://github.com/taglib/taglib.git
synced 2026-02-13 19:53:06 -05:00
Use a standard type rather than TagLib::ulong.
This won't break the ABI compatibility.
This commit is contained in:
@ -600,7 +600,7 @@ bool ASF::File::save()
|
||||
writeBlock(ByteVector::fromUInt(d->objects.size(), false));
|
||||
writeBlock(ByteVector("\x01\x02", 2));
|
||||
|
||||
insert(data, 30, static_cast<ulong>(d->headerSize - 30));
|
||||
insert(data, 30, static_cast<unsigned long>(d->headerSize - 30));
|
||||
|
||||
d->headerSize = data.size() + 30;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user