- added patches fix build with gcc14 + eb-gcc14.patch OBS-URL: https://build.opensuse.org/request/show/1173644 OBS-URL: https://build.opensuse.org/package/show/M17N/eb?expand=0&rev=17
14 lines
465 B
Diff
14 lines
465 B
Diff
Index: eb-4.4.3/libebutils/puts_eucjp.c
|
|
===================================================================
|
|
--- eb-4.4.3.orig/libebutils/puts_eucjp.c
|
|
+++ eb-4.4.3/libebutils/puts_eucjp.c
|
|
@@ -94,7 +94,7 @@ fputs_eucjp_to_locale(const char *string
|
|
out_p = buffer;
|
|
out_left = buffer_size;
|
|
|
|
- if (iconv(cd, &in_p, &in_left, &out_p, &out_left) != -1)
|
|
+ if (iconv(cd, (char **)&in_p, &in_left, &out_p, &out_left) != -1)
|
|
break;
|
|
if (errno == E2BIG) {
|
|
/*
|