filesystem: fix const cast

This commit is contained in:
mittorn 2020-02-09 00:29:56 +07:00
parent 7d0e45b507
commit 27da2e10ff

View File

@ -205,7 +205,7 @@ static void FS_BackupFileName( file_t *file, const char *path, uint options )
if( path == NULL ) if( path == NULL )
{ {
if( file->backup_path ) if( file->backup_path )
Mem_Free( file->backup_path ); Mem_Free( (void*)file->backup_path );
if( file == fs_last_readfile ) if( file == fs_last_readfile )
FS_EnsureOpenFile( NULL ); FS_EnsureOpenFile( NULL );
} }