From 18e68f1ab3f3df4a6994894e141251b3be6dd200 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Tue, 20 Dec 2022 16:34:23 +0300 Subject: [PATCH] filesystem: fix missing cast --- filesystem/filesystem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filesystem/filesystem.c b/filesystem/filesystem.c index 4e8ceb23..b6145267 100644 --- a/filesystem/filesystem.c +++ b/filesystem/filesystem.c @@ -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 )