--- a/src/archiver_lzma.c Fri Nov 30 00:04:52 2012 -0500
+++ b/src/archiver_lzma.c Fri Nov 30 12:43:56 2012 -0500
@@ -639,13 +639,11 @@
BAIL_MACRO(PHYSFS_ERR_READ_ONLY, 0);
} /* LZMA_mkdir */
-static int LZMA_stat(void *opaque, const char *filename,
- int *exists, PHYSFS_Stat *stat)
+static int LZMA_stat(void *opaque, const char *filename, PHYSFS_Stat *stat)
{
const LZMAarchive *archive = (const LZMAarchive *) opaque;
const LZMAfile *file = lzma_find_file(archive, filename);
- *exists = (file != 0);
if (!file)
return 0;
@@ -699,5 +697,5 @@
#endif /* defined PHYSFS_SUPPORTS_7Z */
-/* end of lzma.c ... */
+/* end of archiver_lzma.c ... */