This is an automatic generated email to let you know that the following patch were queued at the http://git.linuxtv.org/cgit.cgi/v4l-utils.git tree:
Subject: gconv: fix compiler warning Author: Hans Verkuil <[email protected]> Date: Wed May 20 09:30:26 2020 +0200 The __gconv_transliterate function is no longer exported in the gconv.h header. Add the prototype to loop.c instead. I'm sure this will become a problem in the future, but for now it compiles again without warnings. Signed-off-by: Hans Verkuil <[email protected]> contrib/gconv/iconv/loop.c | 7 +++++++ 1 file changed, 7 insertions(+) --- http://git.linuxtv.org/cgit.cgi/v4l-utils.git/commit/?id=131840f30c48b0f63d4a065fca628248d8fc0eda diff --git a/contrib/gconv/iconv/loop.c b/contrib/gconv/iconv/loop.c index 127a4663af87..96bfa4b234d7 100644 --- a/contrib/gconv/iconv/loop.c +++ b/contrib/gconv/iconv/loop.c @@ -57,6 +57,13 @@ #define __need_size_t #include <stddef.h> +extern int __gconv_transliterate (struct __gconv_step *step, + struct __gconv_step_data *step_data, + const unsigned char *inbufstart, + const unsigned char **inbufp, + const unsigned char *inbufend, + unsigned char **outbufstart, + size_t *irreversible); /* We have to provide support for machines which are not able to handled unaligned memory accesses. Some of the character encodings have _______________________________________________ linuxtv-commits mailing list [email protected] https://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits
