]> granicus.if.org Git - taglib/commitdiff
CVS_SILENT nitpicks
authorScott Wheeler <wheeler@kde.org>
Sat, 10 Apr 2004 17:03:41 +0000 (17:03 +0000)
committerScott Wheeler <wheeler@kde.org>
Sat, 10 Apr 2004 17:03:41 +0000 (17:03 +0000)
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@302642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da

flac/flacfile.cpp

index 4ba144d02e833977abfff2a49a8d0bce1e9f4caf..046eef54920866bc4d1bfeb58382beb2dbff586c 100644 (file)
@@ -154,19 +154,19 @@ void FLAC::File::save()
 
     // Search through the remaining metadata
 
-    char blocktype = header[0] & 0x7f;
-    bool lastblock = header[0] & 0x80;
+    char blockType = header[0] & 0x7f;
+    bool lastBlock = header[0] & 0x80;
 
-    while(!lastblock) {
+    while(!lastBlock) {
       seek(nextPageOffset);
 
       header = readBlock(4);
-      blocktype = header[0] & 0x7f;
-      lastblock = header[0] & 0x80;
+      blockType = header[0] & 0x7f;
+      lastBlock = header[0] & 0x80;
       length = header.mid(1, 3).toUInt();
 
       // Type is vorbiscomment
-      if( blocktype == 4 ) {
+      if(blockType == 4) {
         v[0] = header[0];
         insert(v, nextPageOffset, length + 4);
         break;