]> granicus.if.org Git - taglib/commitdiff
another style fix
authorSander Jansen <s.jansen@gmail.com>
Sun, 17 May 2015 03:37:54 +0000 (22:37 -0500)
committerSander Jansen <s.jansen@gmail.com>
Thu, 12 Nov 2015 14:50:34 +0000 (08:50 -0600)
taglib/toolkit/tbytevector.cpp

index 531503f77d18f78f077c24cd26ec827849f94ac9..757e41c31444e73c52f6ae4fcd0984a42c86d2e4 100644 (file)
@@ -981,11 +981,11 @@ ByteVector ByteVector::fromBase64(const ByteVector & input)
   while(4 <= len) {
 
     // Check invalid character
-    if(base64[src[0]] == 0x80) 
+    if(base64[src[0]] == 0x80)
       break;
 
     // Check invalid character
-    if(base64[src[1]] == 0x80) 
+    if(base64[src[1]] == 0x80)
       break;
 
     // Decode first byte
@@ -994,7 +994,7 @@ ByteVector ByteVector::fromBase64(const ByteVector & input)
     if(src[2] != '=') {
 
       // Check invalid character
-      if(base64[src[2]] == 0x80) 
+      if(base64[src[2]] == 0x80)
         break;
 
       // Decode second byte
@@ -1003,7 +1003,7 @@ ByteVector ByteVector::fromBase64(const ByteVector & input)
       if(src[3] != '=') {
 
         // Check invalid character
-        if(base64[src[3]] == 0x80) 
+        if(base64[src[3]] == 0x80)
           break;
 
         // Decode third byte
@@ -1059,7 +1059,7 @@ ByteVector ByteVector::toBase64() const
         *dst++ = alphabet[(src[0] & 0x03) << 4];
         *dst++ = '=';
       }
-    *dst++='=';
+    *dst++ = '=';
     }
     return output;
   }