mirror of
https://github.com/DarkStore-3DS/DarkStore.git
synced 2026-07-02 16:49:05 +00:00
Fix different signedness warning
This commit is contained in:
@@ -124,7 +124,7 @@ Result extractArchive(const std::string &archivePath, const std::string &wantedF
|
|||||||
return EXTRACT_ERROR_ARCHIVE;
|
return EXTRACT_ERROR_ARCHIVE;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t written = fwrite(buf, 1, size, file);
|
ssize_t written = fwrite(buf, 1, size, file);
|
||||||
|
|
||||||
/* Failed to write, likely out of space. */
|
/* Failed to write, likely out of space. */
|
||||||
if (written != size) {
|
if (written != size) {
|
||||||
|
|||||||
Reference in New Issue
Block a user