Update To 11.40.268.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / wtf / CryptographicallyRandomNumber.cpp
index 2de8201..285a5c9 100644 (file)
@@ -77,7 +77,7 @@ private:
 ARC4Stream::ARC4Stream()
 {
     for (int n = 0; n < 256; n++)
-        s[n] = n;
+        s[n] = static_cast<uint8_t>(n);
     i = 0;
     j = 0;
 }