Skip to content

Commit 7271387

Browse files
committed
Add missing static to secp256k1_schnorrsig_sign_internal
1 parent 9a5a87e commit 7271387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/schnorrsig/main_impl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ static void secp256k1_schnorrsig_challenge(secp256k1_scalar* e, const unsigned c
122122
secp256k1_scalar_set_b32(e, buf, NULL);
123123
}
124124

125-
int secp256k1_schnorrsig_sign_internal(const secp256k1_context* ctx, unsigned char *sig64, const unsigned char *msg, size_t msglen, const secp256k1_keypair *keypair, secp256k1_nonce_function_hardened noncefp, void *ndata) {
125+
static int secp256k1_schnorrsig_sign_internal(const secp256k1_context* ctx, unsigned char *sig64, const unsigned char *msg, size_t msglen, const secp256k1_keypair *keypair, secp256k1_nonce_function_hardened noncefp, void *ndata) {
126126
secp256k1_scalar sk;
127127
secp256k1_scalar e;
128128
secp256k1_scalar k;

0 commit comments

Comments
 (0)