aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/xm
diff options
context:
space:
mode:
authorTsuda Kageyu <tsuda.kageyu@gmail.com>2015-12-02 11:36:54 +0900
committerTsuda Kageyu <tsuda.kageyu@gmail.com>2015-12-02 11:36:54 +0900
commitd97292c59320826e275299a7fcafc5b16c821a6d (patch)
tree491df3a09696cc1ae5b208635afb6b4c943d9b7d /taglib/xm
parent060a50ab117826ae994ce44031f79d4bf13b6586 (diff)
Amend some comments refer to the 'offset_t' type. It no longer exists.
Diffstat (limited to 'taglib/xm')
-rw-r--r--taglib/xm/xmfile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/taglib/xm/xmfile.cpp b/taglib/xm/xmfile.cpp
index a0bb5353..5919abac 100644
--- a/taglib/xm/xmfile.cpp
+++ b/taglib/xm/xmfile.cpp
@@ -421,7 +421,7 @@ bool XM::File::save()
if(!readU16L(patternCount) || !readU16L(instrumentCount))
return false;
- long pos = 60 + headerSize; // should be offset_t in taglib2.
+ long pos = 60 + headerSize; // should be long long in taglib2.
// need to read patterns again in order to seek to the instruments:
for(ushort i = 0; i < patternCount; ++ i) {