From 62c342a3bf23c0353245514102b1ad6fffbd6c19 Mon Sep 17 00:00:00 2001 From: The MMGen Project Date: Tue, 18 Aug 2026 14:21:20 +0000 Subject: [PATCH] secp256k1 extmod: initialize all struct members of sentinel (`gcc -Wextra`) --- extmod/secp256k1mod.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extmod/secp256k1mod.c b/extmod/secp256k1mod.c index 013e0104..77f76e57 100755 --- a/extmod/secp256k1mod.c +++ b/extmod/secp256k1mod.c @@ -424,7 +424,7 @@ static PyMethodDef secp256k1_methods[] = { METH_VARARGS, "Convert a compressed or uncompressed serialized pubkey into an uncompressed serialized pubkey" }, - {NULL, NULL} + {NULL, NULL, 0, NULL} }; static int secp256k1_traverse(PyObject *m, visitproc visit, void *arg) {