diff options
author | rbuj <[email protected]> | 2019-03-03 10:43:16 +0100 |
---|---|---|
committer | monsta <[email protected]> | 2019-05-29 11:35:22 +0300 |
commit | 5bc4d4e8ff6420a5cf5d8fd898d0afee2fde18b2 (patch) | |
tree | 34996bc5e70b7ccfda7bcf6cfab98ca83cd15523 /mate-dictionary/libgdict/gdict-context.c | |
parent | 10d0e538235a3d87c8a5c64193cbcf04c2a8a07b (diff) | |
download | mate-utils-5bc4d4e8ff6420a5cf5d8fd898d0afee2fde18b2.tar.bz2 mate-utils-5bc4d4e8ff6420a5cf5d8fd898d0afee2fde18b2.tar.xz |
Fix -Werror=cast-function-type with GCC 8
In addition, it removes unnecessary function type casts like:
(GDestroyNotify) g_object_unref
(GDestroyNotify) g_free
Diffstat (limited to 'mate-dictionary/libgdict/gdict-context.c')
-rw-r--r-- | mate-dictionary/libgdict/gdict-context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mate-dictionary/libgdict/gdict-context.c b/mate-dictionary/libgdict/gdict-context.c index c9dc1eb4..958dcc93 100644 --- a/mate-dictionary/libgdict/gdict-context.c +++ b/mate-dictionary/libgdict/gdict-context.c @@ -50,7 +50,7 @@ #include "gdict-private.h" -static void gdict_context_class_init (gpointer g_iface); +static void gdict_context_class_init (gpointer g_iface, void *user_data); GType @@ -79,7 +79,7 @@ gdict_context_get_type (void) static void -gdict_context_class_init (gpointer g_iface) +gdict_context_class_init (gpointer g_iface, void *user_data) { GType iface_type = G_TYPE_FROM_INTERFACE (g_iface); |