From: Lukáš Lalinský Date: Sun, 4 Mar 2012 11:01:21 +0000 (+0100) Subject: Don't store the output of ByteVector::toUInt() in int, use uint instead X-Git-Tag: v1.8beta~30 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab8a0ee8937256311e649a88e8ddd7c7f870ad59;p=taglib Don't store the output of ByteVector::toUInt() in int, use uint instead --- diff --git a/taglib/ogg/xiphcomment.cpp b/taglib/ogg/xiphcomment.cpp index c26391a9..c02ef1a1 100644 --- a/taglib/ogg/xiphcomment.cpp +++ b/taglib/ogg/xiphcomment.cpp @@ -287,7 +287,7 @@ void Ogg::XiphComment::parse(const ByteVector &data) uint pos = 0; - int vendorLength = data.mid(0, 4).toUInt(false); + uint vendorLength = data.mid(0, 4).toUInt(false); pos += 4; d->vendorID = String(data.mid(pos, vendorLength), String::UTF8);