mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Fix implicit long to int conversions
This commit is contained in:
parent
c1d8159a34
commit
9a08678098
@ -80,7 +80,7 @@ void MPEG::XingHeader::parse(const ByteVector &data)
|
||||
{
|
||||
// Look for a Xing header.
|
||||
|
||||
long offset = data.find("Xing");
|
||||
auto offset = data.find("Xing");
|
||||
if(offset < 0)
|
||||
offset = data.find("Info");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user