addressed a few warnings in the filesystem code.

This commit is contained in:
Christoph Oelckers 2023-12-17 13:32:17 +01:00
commit efef4bdfd1
5 changed files with 6 additions and 6 deletions

View file

@ -167,7 +167,7 @@ unsigned int FZipExploder::InitTable(std::vector<HuffNode> &decoder, int numspot
size_t start = decoder.size();
decoder.resize(decoder.size() + numspots);
memset(&decoder[start], 0, sizeof(HuffNode)*numspots);
return start;
return (unsigned)start;
}
int FZipExploder::buildercmp(const void *a, const void *b)