Skip to content

Commit ff2a39e

Browse files
committed
Add missing unsigned qualifier
This previously got lost in the deprecation warning noise.
1 parent 6db2c2d commit ff2a39e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/openssl/openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4233,7 +4233,7 @@ static EVP_PKEY *php_openssl_pkey_init_ec(zval *data, bool *is_private) {
42334233
BIGNUM *d = NULL, *x = NULL, *y = NULL;
42344234
EC_GROUP *group = NULL;
42354235
EC_POINT *pnt = NULL;
4236-
char *pnt_oct = NULL;
4236+
unsigned char *pnt_oct = NULL;
42374237
EVP_PKEY *param_key = NULL, *pkey = NULL;
42384238
EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL);
42394239
OSSL_PARAM *params = NULL;

0 commit comments

Comments
 (0)