mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-19 00:18:22 +00:00
Fix for linux compile failure
This commit is contained in:
+1
-1
@@ -2070,7 +2070,7 @@ int ZoneDatabase::CountCharacterInvSnapshots(uint32 character_id) {
|
|||||||
auto row = results.begin();
|
auto row = results.begin();
|
||||||
|
|
||||||
int64 count = atoll(row[0]);
|
int64 count = atoll(row[0]);
|
||||||
if (count > INT_MAX)
|
if (count > 2147483647)
|
||||||
return -2;
|
return -2;
|
||||||
if (count < 0)
|
if (count < 0)
|
||||||
return -3;
|
return -3;
|
||||||
|
|||||||
Reference in New Issue
Block a user