aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/wavpack
diff options
context:
space:
mode:
authorFestus Hagen <festushagen2002@yahoo.com>2015-08-06 03:22:03 -0400
committerFestus Hagen <festushagen2002@yahoo.com>2015-08-06 03:22:03 -0400
commit65a657229964a52561fe5fd6b9f1cdadc86fe780 (patch)
tree60829738d07cd38ee2748e22396a1109e82ede15 /taglib/wavpack
parent7c17d32b3a8bc3ed718af3790452fec33ebd307b (diff)
Silence uint ambiguity errors in wavepackproperties.
Diffstat (limited to 'taglib/wavpack')
-rw-r--r--taglib/wavpack/wavpackproperties.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/taglib/wavpack/wavpackproperties.cpp b/taglib/wavpack/wavpackproperties.cpp
index 94d3534c..4e4ccd58 100644
--- a/taglib/wavpack/wavpackproperties.cpp
+++ b/taglib/wavpack/wavpackproperties.cpp
@@ -210,7 +210,7 @@ void WavPack::Properties::read(File *file, long streamLength)
}
}
-uint WavPack::Properties::seekFinalIndex(File *file, long streamLength)
+TagLib::uint WavPack::Properties::seekFinalIndex(File *file, long streamLength)
{
const long offset = file->rfind("wvpk", streamLength);
if(offset == -1)