From f836cb4dea012826c00c371783db2b810438e750 Mon Sep 17 00:00:00 2001 From: Sander Jansen Date: Sat, 16 May 2015 21:38:01 -0500 Subject: [PATCH] Two more spaces --- taglib/toolkit/tbytevector.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {