engine: misc build fixes for clang with mingw

This commit is contained in:
Alibek Omarov
2026-01-24 07:21:00 +05:00
parent e9cd94eea6
commit cc9e3a5a81
7 changed files with 26 additions and 20 deletions

View File

@@ -471,7 +471,7 @@ static int ID_ProcessWMIC( bloomfilter_t *value, const wchar_t *cmdline )
return 0;
pbuf = COM_ParseFile( buffer, token, sizeof( token )); // Header
while( pbuf = COM_ParseFile( pbuf, token, sizeof( token )))
while(( pbuf = COM_ParseFile( pbuf, token, sizeof( token ))))
{
if( !ID_VerifyHEX( token ))
continue;
@@ -492,7 +492,7 @@ static int ID_CheckWMIC( bloomfilter_t value, const wchar_t *cmdline )
return 0;
pbuf = COM_ParseFile( buffer, token, sizeof( token )); // Header
while( pbuf = COM_ParseFile( pbuf, token, sizeof( token )))
while(( pbuf = COM_ParseFile( pbuf, token, sizeof( token ))))
{
bloomfilter_t filter;