removed a warning by adding a cast
This commit is contained in:
parent
5b6e1d4cee
commit
b035d272ec
|
@ -346,7 +346,7 @@ static int hog_load_entries(const char *name, int forWriting, HOGinfo *info)
|
|||
} /* if */
|
||||
|
||||
entry->size = PHYSFS_swapULE32(entry->size);
|
||||
entry->startPos = __PHYSFS_platformTell(fh);
|
||||
entry->startPos = (unsigned int) __PHYSFS_platformTell(fh);
|
||||
if (entry->startPos == -1)
|
||||
{
|
||||
__PHYSFS_platformClose(fh);
|
||||
|
|
Loading…
Reference in New Issue