From eac89795779ae6b972e34529264be062d5cc5414 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sat, 25 May 2002 11:12:40 +0000 Subject: [PATCH] Patched to compile. --- archivers/dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archivers/dir.c b/archivers/dir.c index 1c47393..27d6e54 100644 --- a/archivers/dir.c +++ b/archivers/dir.c @@ -249,7 +249,7 @@ static PHYSFS_sint64 DIR_getLastModTime(DirHandle *h, const char *name) PHYSFS_sint64 retval; BAIL_IF_MACRO(d == NULL, NULL, 0); - retval = __PHYSFS_platformGetMtime(d); + retval = __PHYSFS_platformGetLastModTime(d); free(d); return(retval); } /* DIR_getLastModTime */