mirror of
https://github.com/taglib/taglib.git
synced 2025-06-04 01:28:21 -04:00
Two more spaces
This commit is contained in:
parent
47bd01ecda
commit
f836cb4dea
@ -1052,7 +1052,7 @@ ByteVector ByteVector::toBase64() const
|
||||
if(len) {
|
||||
*dst++ = alphabet[(src[0] >> 2) & 0x3f];
|
||||
if(len>1) {
|
||||
*dst++ = alphabet[((src[0] & 0x03) << 4)|((src[1] >> 4) & 0x0f)];
|
||||
*dst++ = alphabet[((src[0] & 0x03) << 4) | ((src[1] >> 4) & 0x0f)];
|
||||
*dst++ = alphabet[((src[1] & 0x0f) << 2)];
|
||||
}
|
||||
else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user