From 55aa47a5dc5d82b0f1c99897969477ee0f35ecf9 Mon Sep 17 00:00:00 2001 From: Andrey Nazarov Date: Tue, 23 Feb 2010 14:35:57 +0000 Subject: Cosmetic changes to filesystem code. --- source/sys_unix.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/sys_unix.c') 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 ) { -- cgit v1.2.3