From: Sander Jansen Date: Sun, 17 May 2015 02:38:01 +0000 (-0500) Subject: Two more spaces X-Git-Tag: v1.11beta~64^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f836cb4dea012826c00c371783db2b810438e750;p=taglib Two more spaces --- diff --git a/taglib/toolkit/tbytevector.cpp b/taglib/toolkit/tbytevector.cpp index 14550ad1..531503f7 100644 --- a/taglib/toolkit/tbytevector.cpp +++ b/taglib/toolkit/tbytevector.cpp @@ -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 {