required explicit cast

This commit is contained in:
FiveTech Software
2025-02-11 04:18:39 +01:00
committed by GitHub
parent 91e06d0ff1
commit e44996d076

View File

@@ -539,7 +539,7 @@ static size_t hb_curl_writefunction_callback( void * buffer, size_t size, size_t
{
hb_vmPushEvalSym();
hb_vmPush( hb_curl->pWriteFunctionCallback );
hb_vmPushString( buffer, size * nmemb );
hb_vmPushString( ( const char * ) buffer, size * nmemb );
hb_vmSend( 1 );
hb_vmRequestRestore();
return size * nmemb;