From 9a086780981370937c336a4a21148c9788033c56 Mon Sep 17 00:00:00 2001 From: "Stephen F. Booth" Date: Sun, 17 Dec 2023 11:06:51 -0600 Subject: [PATCH] Fix implicit long to int conversions --- taglib/mpeg/xingheader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taglib/mpeg/xingheader.cpp b/taglib/mpeg/xingheader.cpp index 72914345..99d6b8c8 100644 --- a/taglib/mpeg/xingheader.cpp +++ b/taglib/mpeg/xingheader.cpp @@ -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");