mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Fix implicit long to int conversion
This commit is contained in:
parent
9a08678098
commit
98961813dc
@ -207,7 +207,7 @@ ByteVector APE::Footer::render(bool isHeader) const
|
||||
flags[30] = false; // footer is always present
|
||||
flags[29] = isHeader;
|
||||
|
||||
v.append(ByteVector::fromUInt(flags.to_ulong(), false));
|
||||
v.append(ByteVector::fromUInt(static_cast<unsigned int>(flags.to_ulong()), false));
|
||||
|
||||
// add the reserved 64bit
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user