aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTsuda Kageyu <tsuda.kageyu@gmail.com>2017-06-13 15:05:25 +0900
committerTsuda Kageyu <tsuda.kageyu@gmail.com>2017-06-13 15:05:25 +0900
commiteeb2f5de09ef73e81f0f0a1314571422714ca054 (patch)
tree829901b67366b625036c3de3ecb2bd8262e46280
parent1792ee9db81ed46fbce258c57a709ac7b38ea753 (diff)
Fix some typos in debug messages.
-rw-r--r--taglib/riff/rifffile.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/taglib/riff/rifffile.cpp b/taglib/riff/rifffile.cpp
index b03e06f9..0af4d4b4 100644
--- a/taglib/riff/rifffile.cpp
+++ b/taglib/riff/rifffile.cpp
@@ -101,7 +101,7 @@ unsigned int RIFF::File::chunkCount() const
unsigned int RIFF::File::chunkDataSize(unsigned int i) const
{
if(i >= d->chunks.size()) {
- debug("RIFF::File::chunkPadding() - Index out of range. Returning 0.");
+ debug("RIFF::File::chunkDataSize() - Index out of range. Returning 0.");
return 0;
}
@@ -111,7 +111,7 @@ unsigned int RIFF::File::chunkDataSize(unsigned int i) const
unsigned int RIFF::File::chunkOffset(unsigned int i) const
{
if(i >= d->chunks.size()) {
- debug("RIFF::File::chunkPadding() - Index out of range. Returning 0.");
+ debug("RIFF::File::chunkOffset() - Index out of range. Returning 0.");
return 0;
}