1
0
Fork 0
forked from len0rd/rockbox

Attempt at fixing 64-bit sim warning.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11788 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2006-12-17 14:47:12 +00:00
parent d4a46cba30
commit 84a013ea41
3 changed files with 14 additions and 9 deletions

View file

@ -1466,7 +1466,7 @@ void ProcessDehFile(const char *filename, const char *outfilename, int lumpnum)
// killough 10/98: allow DEH files to come from wad lumps
if (filename)
{
if ((int)(infile.inp = (void *) open(filename,O_RDONLY))<0)
if ((intptr_t)(infile.inp = (void *)(intptr_t)open(filename,O_RDONLY))<0)
{
printf( "-deh file %s not found\n",filename);
return; // should be checked up front anyway
@ -1558,7 +1558,7 @@ void ProcessDehFile(const char *filename, const char *outfilename, int lumpnum)
if (infile.lump)
W_UnlockLumpNum(lumpnum); // Mark purgable
else
close((int) infile.inp); // Close real file
close((int)(intptr_t) infile.inp); // Close real file
close(fileout);
}