ports/security/py-axolotl-curve25519/patches/patch-curve25519module_c

15 lines
303 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Avoid pointer/integer mismatch.
Index: curve25519module.c
--- curve25519module.c.orig
+++ curve25519module.c
@@ -158,7 +158,7 @@ curve25519_functions[] = {
PyModuleDef_HEAD_INIT,
"axolotl_curve25519",
NULL,
- NULL,
+ 0,
curve25519_functions,
};