mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Replace TagLib::uint with unsinged int.
This commit is contained in:
parent
42459fe457
commit
36b905670c
@ -225,7 +225,7 @@ bool FLAC::File::save()
|
||||
ByteVector paddingHeader = ByteVector::fromUInt(paddingLength);
|
||||
paddingHeader[0] = static_cast<char>(MetadataBlock::Padding | LastBlockFlag);
|
||||
data.append(paddingHeader);
|
||||
data.resize(static_cast<TagLib::uint>(data.size() + paddingLength));
|
||||
data.resize(static_cast<unsigned int>(data.size() + paddingLength));
|
||||
|
||||
// Write the data to the file
|
||||
|
||||
|
@ -102,7 +102,7 @@ namespace TagLib
|
||||
bool deref() { return ! --refCount; }
|
||||
int count() { return refCount; }
|
||||
private:
|
||||
uint refCount;
|
||||
unsigned int refCount;
|
||||
#endif
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user