Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / wtf / text / Base64.cpp
index 20ac803..f54925d 100644 (file)
@@ -151,7 +151,7 @@ static inline bool base64DecodeInternal(const T* data, unsigned length, Vector<c
     unsigned outLength = 0;
     bool hadError = false;
     for (unsigned idx = 0; idx < length; ++idx) {
-        unsigned ch = data[idx];
+        UChar ch = data[idx];
         if (ch == '=') {
             ++equalsSignCount;
             // There should never be more than 2 padding characters.