- added patches fix fix build with gcc 15 + x3270-gcc15.patch OBS-URL: https://build.opensuse.org/request/show/1245877 OBS-URL: https://build.opensuse.org/package/show/Base:System/x3270?expand=0&rev=76
13 lines
312 B
Diff
13 lines
312 B
Diff
--- x026-1.2/x026.c 2025-02-14 11:59:47.781340989 +0000
|
|
+++ x026-1.2/x026.c 2025-02-14 11:57:47.954597116 +0000
|
|
@@ -603,7 +603,7 @@ struct button {
|
|
char *label;
|
|
void (*callback)(int);
|
|
} button[] = {
|
|
- { "Off", (void (*)())exit },
|
|
+ { "Off", (void (*)(int))exit },
|
|
{ "Save", save },
|
|
{ NULL, NULL },
|
|
};
|
|
|