diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2018-05-21 12:01:46 +0200 |
---|---|---|
committer | Lubomir Rintel <lkundrak@v3.sk> | 2018-05-21 12:02:26 +0200 |
commit | 6c2eb953d50d1255d0b55197f711b2094e98b79a (patch) | |
tree | 481e32b7e22136e18fee6777f1b859b6add9559a /libnm-glib/nm-access-point.c | |
parent | 347e3e36895996e2503250f4d14cc757091cd9d0 (diff) | |
download | NetworkManager-6c2eb953d50d1255d0b55197f711b2094e98b79a.tar.gz |
active-connection: fix build with clang-6.0
glib 2.56's g_steal_pointer() won't tolerate a function pointer in place
of a gpointer.
CC src/src_libNetworkManager_la-nm-active-connection.lo
src/nm-active-connection.c:1017:17: error: pointer type mismatch
('NMActiveConnectionAuthResultFunc' (aka 'void (*)(struct _NMActiveConnection *,
int, const char *, void *)') and 'gpointer' (aka 'void *'))
[-Werror,-Wpointer-type-mismatch]
result_func = g_steal_pointer (&priv->auth.result_func);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/glib-2.0/glib/gmem.h:200:6: note: expanded from macro 'g_steal_pointer'
(0 ? (*(pp)) : (g_steal_pointer) (pp))
^ ~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
There's just a single spot we use it that way, so it's perhaps better to
work around the warning instead of disabling it.
Diffstat (limited to 'libnm-glib/nm-access-point.c')
0 files changed, 0 insertions, 0 deletions