summaryrefslogtreecommitdiff
path: root/source/sys_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/sys_unix.c')
-rw-r--r--source/sys_unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/sys_unix.c b/source/sys_unix.c
index c2a5eab..96de99e 100644
--- a/source/sys_unix.c
+++ b/source/sys_unix.c
@@ -486,7 +486,7 @@ unsigned Sys_Milliseconds( void ) {
Sys_GetPathInfo
================
*/
-qboolean Sys_GetPathInfo( const char *path, fsFileInfo_t *info ) {
+qboolean Sys_GetPathInfo( const char *path, file_info_t *info ) {
struct stat st;
if( stat( path, &st ) == -1 ) {
@@ -506,7 +506,7 @@ qboolean Sys_GetPathInfo( const char *path, fsFileInfo_t *info ) {
return qtrue;
}
-qboolean Sys_GetFileInfo( FILE *fp, fsFileInfo_t *info ) {
+qboolean Sys_GetFileInfo( FILE *fp, file_info_t *info ) {
struct stat st;
if( fstat( fileno( fp ), &st ) == -1 ) {