]> granicus.if.org Git - taglib/commitdiff
Patch from Josef Radinger fixing typo in debug message.
authorScott Wheeler <wheeler@kde.org>
Fri, 16 Jan 2009 05:16:48 +0000 (05:16 +0000)
committerScott Wheeler <wheeler@kde.org>
Fri, 16 Jan 2009 05:16:48 +0000 (05:16 +0000)
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

taglib/mpeg/mpegheader.cpp

index 5238498b2ed3c69636f4f8d670d22beb8a4a47d8..878953009f919f18cd39caf30abf4d8cc45aed9a 100644 (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;
   }