Index: Source/wtf/text/Base64.cpp |
diff --git a/Source/wtf/text/Base64.cpp b/Source/wtf/text/Base64.cpp |
index d7e6e9164dd8601733e537dc87c8552ee6f7c1c8..9a31527a2251f696a6846510cacbe9cfed9e844a 100644 |
--- a/Source/wtf/text/Base64.cpp |
+++ b/Source/wtf/text/Base64.cpp |
@@ -182,7 +182,7 @@ static inline bool base64DecodeInternal(const T* data, unsigned length, Vector<c |
// Valid data is (n * 4 + [0,2,3]) characters long. |
if ((outLength % 4) == 1) |
return false; |
- |
+ |
// 4-byte to 3-byte conversion |
outLength -= (outLength + 3) / 4; |
if (!outLength) |