Fixed unix.c to compile again on MacOS X.

This commit is contained in:
Ryan C. Gordon 2005-03-13 03:18:18 +00:00
parent bdb7f54bd9
commit 9f9800928d
2 changed files with 3 additions and 4 deletions

View File

@ -2,7 +2,8 @@
* CHANGELOG.
*/
03122005 - Added evil GOTO_*_MACRO_* macros.
03122005 - Added evil GOTO_*_MACRO_* macros. Fixed unix.c to compile again on
MacOS X.
02152005 - Minor comment fix in platform/pocketpc.c
01052005 - Fixed HOG archiver file lookup (thanks, Chris!)
12162004 - Fixed some documentation/header comment typos (thanks, Gaetan!)

View File

@ -170,10 +170,8 @@ void __PHYSFS_platformDetectAvailableCDs(PHYSFS_StringCallback cb, void *data)
struct statfs *mntbufp;
int i, mounts;
retval[0] = NULL;
if (IOMasterPort(MACH_PORT_NULL, &masterPort) != KERN_SUCCESS)
return(retval);
BAIL_MACRO(ERR_OS_ERROR, /*return void*/);
mounts = getmntinfo(&mntbufp, MNT_WAIT); /* NOT THREAD SAFE! */
for (i = 0; i < mounts; i++)