mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-22 16:02:29 +02:00
Fixed "integer constant is too large for 'long' type" issue; make constant unsigned instead of typecasting
This commit is contained in:
@@ -742,7 +742,7 @@ generate_hash_secret_salt(XML_Parser parser)
|
||||
if (sizeof(unsigned long) == 4) {
|
||||
return entropy * 2147483647;
|
||||
} else {
|
||||
return entropy * (unsigned long)2305843009213693951;
|
||||
return entropy * 2305843009213693951ULL;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user