Change secp256k1_ec_pubkey_combine's count argument to size_t.

This commit is contained in:
Gregory Maxwell
2015-10-31 19:04:34 +00:00
parent c69dea025a
commit 8e48787d97
7 changed files with 14 additions and 20 deletions

View File

@@ -571,7 +571,7 @@ SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_combine(
const secp256k1_context* ctx,
secp256k1_pubkey *out,
const secp256k1_pubkey * const * ins,
int n
size_t n
) SECP256K1_ARG_NONNULL(2) SECP256K1_ARG_NONNULL(3);
# ifdef __cplusplus