aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/asf
diff options
context:
space:
mode:
authorTsuda Kageyu <tsuda.kageyu@gmail.com>2015-12-03 00:03:06 +0900
committerTsuda Kageyu <tsuda.kageyu@gmail.com>2015-12-03 00:03:06 +0900
commit085a0ef2987496937292134adff6869b65a5be71 (patch)
tree8b0d9c2e149f2eeb3df3c62a820aef122927daaa /taglib/asf
parent363c471a2d9b28540324cb4807fc252c19c9d0fb (diff)
Use a standard type rather than TagLib::ulong.
This won't break the ABI compatibility.
Diffstat (limited to 'taglib/asf')
-rw-r--r--taglib/asf/asffile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/taglib/asf/asffile.cpp b/taglib/asf/asffile.cpp
index a5e5ea84..dc21dad4 100644
--- a/taglib/asf/asffile.cpp
+++ b/taglib/asf/asffile.cpp
@@ -600,7 +600,7 @@ bool ASF::File::save()
writeBlock(ByteVector::fromUInt(d->objects.size(), false));
writeBlock(ByteVector("\x01\x02", 2));
- insert(data, 30, static_cast<ulong>(d->headerSize - 30));
+ insert(data, 30, static_cast<unsigned long>(d->headerSize - 30));
d->headerSize = data.size() + 30;