forked from teamnwah/openmw-tes3coop
Fix bsatool warning
This commit is contained in:
parent
f695deb29d
commit
9ab8fe1038
1 changed files with 1 additions and 1 deletions
|
@ -184,7 +184,7 @@ int list(Bsa::BSAFile& bsa, Arguments& info)
|
||||||
{
|
{
|
||||||
// List all files
|
// List all files
|
||||||
const Bsa::BSAFile::FileList &files = bsa.getList();
|
const Bsa::BSAFile::FileList &files = bsa.getList();
|
||||||
for(int i=0; i<files.size(); i++)
|
for(unsigned int i=0; i<files.size(); i++)
|
||||||
{
|
{
|
||||||
if(info.longformat)
|
if(info.longformat)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue