diff options
author | Andrey Nazarov <skuller@skuller.net> | 2010-02-23 14:35:57 +0000 |
---|---|---|
committer | Andrey Nazarov <skuller@skuller.net> | 2010-02-23 14:35:57 +0000 |
commit | 55aa47a5dc5d82b0f1c99897969477ee0f35ecf9 (patch) | |
tree | 2e0729b054a277800b3d86f5f405ed543583babc /source/sys_unix.c | |
parent | a62b6b0ed119444733165048ccc08ceec2b43757 (diff) |
Cosmetic changes to filesystem code.
Diffstat (limited to 'source/sys_unix.c')
-rw-r--r-- | source/sys_unix.c | 4 |
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 ) { |