mirror of
https://github.com/taglib/taglib.git
synced 2025-09-26 06:37:09 -04:00
Fix warnings with VS2010
This commit is contained in:
@ -243,7 +243,7 @@ bool FLAC::File::save()
|
||||
}
|
||||
ByteVector padding = ByteVector::fromUInt(paddingLength);
|
||||
padding.resize(paddingLength + 4);
|
||||
padding[0] = FLAC::MetadataBlock::Padding | LastBlockFlag;
|
||||
padding[0] = (char)(FLAC::MetadataBlock::Padding | LastBlockFlag);
|
||||
data.append(padding);
|
||||
|
||||
// Write the data to the file
|
||||
|
Reference in New Issue
Block a user