Initialize pseudorandom number with 2^64-1
the build was successful Details

This commit is contained in:
tastytea 2018-11-27 12:01:03 +01:00
parent 16eae60349
commit cf6b1f84aa
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ Image image::identicon(const string &digest)
try
{
std::uint64_t random = 0xffff;
std::uint64_t random = 0xffffffffffffffff;
for (uint64_t chunk = 0; chunk < 4; ++chunk)
{
std::stringstream ss;