[core,aad] fix type mismatch warning

This commit is contained in:
akallabeth 2023-08-25 10:33:31 +02:00 committed by akallabeth
parent 4a82980983
commit 0a90e9214e
1 changed files with 1 additions and 1 deletions

View File

@ -714,7 +714,7 @@ static char* bn_to_base64_url(wLog* wlog, rdpPrivateKey* key, enum FREERDP_KEY_P
if (!bn)
return NULL;
char* b64 = crypto_base64url_encode(bn, len);
char* b64 = (char*)crypto_base64url_encode(bn, len);
free(bn);
if (!b64)