aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/it
diff options
context:
space:
mode:
authorTsuda Kageyu <tsuda.kageyu@gmail.com>2015-12-03 01:50:44 +0900
committerTsuda Kageyu <tsuda.kageyu@gmail.com>2015-12-03 02:15:41 +0900
commita0b86836568e294a6f6e83697ee6f9b1b8efb5cf (patch)
treedcb5d462e379d7bdeb15cce0df115137ac7476f8 /taglib/it
parent085a0ef2987496937292134adff6869b65a5be71 (diff)
Use a standard type rather than TagLib::uint.
This won't break the ABI compatibility.
Diffstat (limited to 'taglib/it')
-rw-r--r--taglib/it/itfile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/taglib/it/itfile.cpp b/taglib/it/itfile.cpp
index 7e140510..647491e9 100644
--- a/taglib/it/itfile.cpp
+++ b/taglib/it/itfile.cpp
@@ -130,7 +130,7 @@ bool IT::File::save()
seek(sampleOffset + 20);
- if((TagLib::uint)(i + instrumentCount) < lines.size())
+ if((unsigned int)(i + instrumentCount) < lines.size())
writeString(lines[i + instrumentCount], 25);
else
writeString(String(), 25);
@@ -139,7 +139,7 @@ bool IT::File::save()
// write rest as message:
StringList messageLines;
- for(uint i = instrumentCount + sampleCount; i < lines.size(); ++ i)
+ for(unsigned int i = instrumentCount + sampleCount; i < lines.size(); ++ i)
messageLines.append(lines[i]);
ByteVector message = messageLines.toString("\r").data(String::Latin1);