mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-20 18:34:35 +00:00
Don't list all extensions in doc/html, there's nothing to filter. Add a patch to fix a typo that causes a c23-failure Closes: https://bugs.gentoo.org/960844 Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr> Part-of: https://github.com/gentoo/gentoo/pull/43239 Signed-off-by: Sam James <sam@gentoo.org>
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
PR pending
|
|
https://github.com/zapping-vbi/zvbi/pull/59.patch
|
|
Fix a typo that causes an failure
|
|
>zvbi-0.2.44/src/ure.c:1355:19:
|
|
>error: ISO C23 does not allow arguments for function '_ure_make_expr' declared without parameters [-Werror=deprecated-non-prototype]
|
|
> 1355 | state = _ure_make_expr(p, _ure_pop(b), state, b);
|
|
>
|
|
>zvbi-0.2.44/src/ure.c:1398:13:
|
|
>error: ISO C23 does not allow arguments for function '_ure_make_symbol' declared without parameters [-Werror=deprecated-non-prototype]
|
|
> 1398 | sym = _ure_make_symbol(sp, ep - sp, &used, b);
|
|
|
|
--- a/src/ure.c
|
|
+++ b/src/ure.c
|
|
@@ -1189,7 +1189,7 @@ _ure_sym_neq(_ure_symtab_t *a, _ure_symtab_t *b)
|
|
* Construct a symbol, but only keep unique symbols.
|
|
*/
|
|
static ucs2_t
|
|
-#ifdef __stdc__
|
|
+#ifdef __STDC__
|
|
_ure_make_symbol(ucs2_t *sym, unsigned long limit, unsigned long *consumed,
|
|
_ure_buffer_t *b)
|
|
#else
|
|
@@ -1255,7 +1255,7 @@ _ure_make_symbol(ucs2_t *sym, unsigned long limit, unsigned long *consumed,
|
|
*************************************************************************/
|
|
|
|
static ucs2_t
|
|
-#ifdef __stdc__
|
|
+#ifdef __STDC__
|
|
_ure_make_expr(ucs2_t type, ucs2_t lhs, ucs2_t rhs, _ure_buffer_t *b)
|
|
#else
|
|
_ure_make_expr(type, lhs, rhs, b)
|