28 lines
706 B
Diff
28 lines
706 B
Diff
From 535968c2f861027f3a7d0245fb2b9c6407a575ae Mon Sep 17 00:00:00 2001
|
|
From: Nicolas Chauvet <kwizart@gmail.com>
|
|
Date: Tue, 30 Jan 2024 09:09:27 +0100
|
|
Subject: [PATCH] Fix build with gcc-14 -Wincompatible-pointer-types
|
|
|
|
Reported at https://github.com/sshock/AFFLIBv3/issues/53
|
|
|
|
Signed-off-by: Nicolas Chauvet <kwizart@gmail.com>
|
|
---
|
|
pyaff/pyaff.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/pyaff/pyaff.c b/pyaff/pyaff.c
|
|
index 873c6c8a288f..9f7414253968 100644
|
|
--- a/pyaff/pyaff.c
|
|
+++ b/pyaff/pyaff.c
|
|
@@ -832,7 +832,7 @@ struct __pyx_obj_5pyaff_affile;
|
|
*/
|
|
struct __pyx_obj_5pyaff_affile {
|
|
PyObject_HEAD
|
|
- struct AFFILE *af;
|
|
+ AFFILE *af;
|
|
int64_t size;
|
|
};
|
|
|
|
--
|
|
2.42.0
|
|
|