Skip to content

Commit

Permalink
Add missing unsigned qualifier
Browse files Browse the repository at this point in the history
This previously got lost in the deprecation warning noise.
  • Loading branch information
nikic committed Aug 9, 2021
1 parent 6db2c2d commit ff2a39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/openssl/openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -4233,7 +4233,7 @@ static EVP_PKEY *php_openssl_pkey_init_ec(zval *data, bool *is_private) {
BIGNUM *d = NULL, *x = NULL, *y = NULL;
EC_GROUP *group = NULL;
EC_POINT *pnt = NULL;
char *pnt_oct = NULL;
unsigned char *pnt_oct = NULL;
EVP_PKEY *param_key = NULL, *pkey = NULL;
EVP_PKEY_CTX *ctx = EVP_PKEY_CTX_new_id(EVP_PKEY_EC, NULL);
OSSL_PARAM *params = NULL;
Expand Down

0 comments on commit ff2a39e

Please sign in to comment.