filesystem: fix wrong types
This commit is contained in:
parent
70cc52e203
commit
c7e3eae9dd
1 changed files with 2 additions and 2 deletions
|
@ -93,7 +93,7 @@ struct file_s
|
||||||
byte buff[FILE_BUFF_SIZE]; // intermediate buffer
|
byte buff[FILE_BUFF_SIZE]; // intermediate buffer
|
||||||
#ifdef XASH_REDUCE_FD
|
#ifdef XASH_REDUCE_FD
|
||||||
const char *backup_path;
|
const char *backup_path;
|
||||||
fs_offset_t *backup_position;
|
fs_offset_t backup_position;
|
||||||
uint backup_options;
|
uint backup_options;
|
||||||
#endif
|
#endif
|
||||||
};
|
};
|
||||||
|
@ -2266,7 +2266,7 @@ static int FS_DuplicateHandle( const char *filename, int handle, fs_offset_t pos
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
|
|
||||||
static int FS_OpenHandle( const char *syspath, int handle, fs_offset_t offset, fs_offset_t len )
|
static file_t *FS_OpenHandle( const char *syspath, int handle, fs_offset_t offset, fs_offset_t len )
|
||||||
{
|
{
|
||||||
file_t *file = (file_t *)Mem_Calloc( fs_mempool, sizeof( file_t ));
|
file_t *file = (file_t *)Mem_Calloc( fs_mempool, sizeof( file_t ));
|
||||||
#ifndef XASH_REDUCE_FD
|
#ifndef XASH_REDUCE_FD
|
||||||
|
|
Loading…
Add table
Reference in a new issue