Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
removed a warning by adding a cast
  • Loading branch information
bhook committed Aug 9, 2003
1 parent 5b6e1d4 commit b035d27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion archivers/hog.c
Expand Up @@ -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);
Expand Down

0 comments on commit b035d27

Please sign in to comment.