From b035d272ec310b356230212afd3ebe3b76585f0c Mon Sep 17 00:00:00 2001 From: bhook Date: Sat, 9 Aug 2003 15:07:08 +0000 Subject: [PATCH] removed a warning by adding a cast --- archivers/hog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivers/hog.c b/archivers/hog.c index a6e7ade9..5f8ca361 100644 --- a/archivers/hog.c +++ b/archivers/hog.c @@ -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);