Fixed some wrong parentheses in the OS/2 code.
--- a/platform/os2.c Thu Jan 28 02:36:18 2010 -0500
+++ b/platform/os2.c Thu Jan 28 02:38:57 2010 -0500
@@ -604,13 +604,13 @@
int __PHYSFS_platformFlush(void *opaque)
{
- return(os2err(DosResetBuffer((HFILE) opaque) == NO_ERROR));
+ return(os2err(DosResetBuffer((HFILE) opaque)) == NO_ERROR);
} /* __PHYSFS_platformFlush */
int __PHYSFS_platformClose(void *opaque)
{
- return(os2err(DosClose((HFILE) opaque) == NO_ERROR));
+ return(os2err(DosClose((HFILE) opaque)) == NO_ERROR);
} /* __PHYSFS_platformClose */
@@ -619,7 +619,7 @@
if (__PHYSFS_platformIsDirectory(path))
return(os2err(DosDeleteDir(path)) == NO_ERROR);
- return(os2err(DosDelete(path) == NO_ERROR));
+ return(os2err(DosDelete(path)) == NO_ERROR);
} /* __PHYSFS_platformDelete */