addressed a few warnings in the filesystem code.
This commit is contained in:
parent
df5dc5ebd8
commit
efef4bdfd1
5 changed files with 6 additions and 6 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue