Skip to content

Commit

Permalink
Patched archivers/wad.c to compile again.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Oct 12, 2005
1 parent b7a3aea commit 361c434
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Expand Up @@ -2,7 +2,8 @@
* CHANGELOG.
*/

10122005 - Fixed locateInStringList() in physfs.c (thanks, Matze!).
10122005 - Fixed locateInStringList() in physfs.c (thanks, Matze!). Patched
archivers/wad.c to compile.
09192005 - Make unix mutexes recursive above pthread layer...fixes deadlock on
MacOS X, for now.
09182005 - API BREAKAGE: PHYSFS_enumerateFilesCallback() now passes the
Expand Down
2 changes: 1 addition & 1 deletion archivers/wad.c
Expand Up @@ -350,7 +350,7 @@ static void WAD_enumerateFiles(dvoid *opaque, const char *dname,
if (sep != NULL)
{
if (strncmp(dname, name, (sep - name)) == 0)
cb(callbackdata, sep + 1);
cb(callbackdata, origdir, sep + 1);
} /* if */
} /* for */
} /* else */
Expand Down

0 comments on commit 361c434

Please sign in to comment.