mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-07 21:39:19 +00:00
Fix type sizes
This commit is contained in:
@ -353,7 +353,7 @@ namespace std
|
||||
if (Pos >= this->Length)
|
||||
return;
|
||||
|
||||
if ((int64_t)Count < 0)
|
||||
if ((int64_t)Count <= 0)
|
||||
return;
|
||||
|
||||
if (Pos + Count > this->Length)
|
||||
@ -377,7 +377,7 @@ namespace std
|
||||
if (Pos >= this->Length)
|
||||
return;
|
||||
|
||||
if ((int64_t)Count < 0)
|
||||
if ((int64_t)Count <= 0)
|
||||
return;
|
||||
|
||||
if (Pos + Count > this->Length)
|
||||
|
Reference in New Issue
Block a user