Skip to content

Commit da8a4c5

Browse files
gmaxwellwhb07
authored andcommitted
Avoids a missing brace warning in schnorrsig/tests_impl.h on old compilers.
GCC 4.9.2, at least, emits "warning: missing braces around initializer" without this.
1 parent a5d6f15 commit da8a4c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/schnorrsig/tests_impl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ void test_schnorrsig_api(void) {
103103
unsigned char sk3[32];
104104
unsigned char msg[32];
105105
secp256k1_keypair keypairs[3];
106-
secp256k1_keypair invalid_keypair = { 0 };
106+
secp256k1_keypair invalid_keypair = {{ 0 }};
107107
secp256k1_xonly_pubkey pk[3];
108108
secp256k1_xonly_pubkey zero_pk;
109109
unsigned char sig[64];

0 commit comments

Comments
 (0)