Fix some typos in debug messages.

This commit is contained in:
Tsuda Kageyu 2017-06-13 15:05:25 +09:00
parent 1792ee9db8
commit eeb2f5de09

View File

@ -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;
}