2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 01:45:19 +01:00

filesystem: fix missing cast

This commit is contained in:
Alibek Omarov 2022-12-20 16:34:23 +03:00 committed by GitHub
parent 7555fefc18
commit 18e68f1ab3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1351,7 +1351,7 @@ static qboolean FS_FindLibrary( const char *dllname, qboolean directpath, fs_dll
poolhandle_t _Mem_AllocPool( const char *name, const char *filename, int fileline )
{
return 0xDEADC0DE;
return (poolhandle_t)0xDEADC0DE;
}
void _Mem_FreePool( poolhandle_t *poolptr, const char *filename, int fileline )