kdesupport/taglib/taglib/mpeg
Scott Wheeler
wheeler at kde.org
Fri Jan 16 06:16:49 CET 2009
SVN commit 911772 by wheeler:
Patch from Josef Radinger fixing typo in debug message.
BUG:30212
CCMAIL:taglib-devel at kde.org
M +2 -2 mpegheader.cpp
--- trunk/kdesupport/taglib/taglib/mpeg/mpegheader.cpp #911771:911772
@@ -164,7 +164,7 @@
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 @@
// 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;
}
More information about the taglib-devel
mailing list