mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-12-26 03:20:52 +00:00
Change size to u64
This commit is contained in:
parent
854919b5e2
commit
617a488a0a
@ -1326,7 +1326,7 @@ bool CheckDebugSelf(const std::string& self, const std::string& elf)
|
||||
|
||||
// Copy the data.
|
||||
char buf[2048];
|
||||
while (size_t size = s.read(buf, 2048)) // Did size need to be of type ssize_t?
|
||||
while (u64 size = s.read(buf, 2048)) // read returns u64.
|
||||
{
|
||||
e.write(buf, size);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user