Patch from Josef Radinger fixing typo in debug message.

BUG:30212
CCMAIL:taglib-devel@kde.org


git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@911772 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
This commit is contained in:
Scott Wheeler 2009-01-16 05:16:48 +00:00
parent 4fbd7c5d93
commit 66b3a1a184

View File

@ -164,7 +164,7 @@ MPEG::Header &MPEG::Header::operator=(const Header &h)
void MPEG::Header::parse(const ByteVector &data)
{
if(data.size() < 4 || uchar(data[0]) != 0xff) {
debug("MPEG::Header::parse() -- First byte did not mactch MPEG synch.");
debug("MPEG::Header::parse() -- First byte did not match MPEG synch.");
return;
}
@ -173,7 +173,7 @@ void MPEG::Header::parse(const ByteVector &data)
// Check for the second byte's part of the MPEG synch
if(!flags[23] || !flags[22] || !flags[21]) {
debug("MPEG::Header::parse() -- Second byte did not mactch MPEG synch.");
debug("MPEG::Header::parse() -- Second byte did not match MPEG synch.");
return;
}