Fixed "integer constant is too large for 'long' type" issue; make constant unsigned instead of typecasting

This commit is contained in:
Adrian Weiler
2016-10-07 19:16:12 +02:00
parent a5d801cc6e
commit e350781084

View File

@@ -742,7 +742,7 @@ generate_hash_secret_salt(XML_Parser parser)
if (sizeof(unsigned long) == 4) { if (sizeof(unsigned long) == 4) {
return entropy * 2147483647; return entropy * 2147483647;
} else { } else {
return entropy * (unsigned long)2305843009213693951; return entropy * 2305843009213693951ULL;
} }
} }