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.7.1~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=258ae751b5a40255699c170c57400b19006d1c8a;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 e7e8fa91..b9f408f6 100644 --- a/taglib/ogg/xiphcomment.cpp +++ b/taglib/ogg/xiphcomment.cpp @@ -287,7 +287,7 @@ void Ogg::XiphComment::parse(const ByteVector &data) int 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);