Comment # 8 on bug 1221682 from Martin Jambor
(In reply to David Disseldorp from comment #6)
> 
> Anyhow, I'm also okay with leaving it as is if that's your preference. This
> can be closed once https://build.opensuse.org/request/show/1160083 is merged.

Even with this merge request accepted, build of the package is still failing
because of an from incompatible pointer type argument, see:

https://build.opensuse.org/package/live_build_log/openSUSE:Factory:Staging:Gcc7/autofs/standard/x86_64

You can test your build locally with osc build --clean --alternative-project
home:rguenther:nextgcc

The failure (that halts the build) is:


[   15s] lookup_udisks.c: In function ‘parse_config’:
[   15s] lookup_udisks.c:1527:41: error: passing argument 2 of
‘xmlSetStructuredErrorFunc’ from incompatible pointer type
[-Wincompatible-pointer-types]
[   15s]  1527 |         xmlSetStructuredErrorFunc(ctxt, &xmlerror);
[   15s]       |                                         ^~~~~~~~~
[   15s]       |                                         |
[   15s]       |                                         void (*)(void *,
xmlError *) {aka void (*)(void *, struct _xmlError *)}
[   15s] In file included from /usr/include/libxml/valid.h:15,
[   15s]                  from /usr/include/libxml/parser.h:19,
[   15s]                  from lookup_udisks.c:29:
[   15s] /usr/include/libxml/xmlerror.h:898:57: note: expected
‘xmlStructuredErrorFunc’ {aka ‘void (*)(void *, const struct _xmlError *)’} but
argument is of type ‘void (*)(void *, xmlError *)’ {aka ‘void (*)(void *,
struct _xmlError *)’}
[   15s]   898 |                                  xmlStructuredErrorFunc
handler);
[   15s]       |                                 
~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~


You are receiving this mail because: