removed a warning by adding a cast

This commit is contained in:
bhook 2003-08-09 15:07:08 +00:00
parent 5b6e1d4cee
commit b035d272ec
1 changed files with 1 additions and 1 deletions

View File

@ -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);