diff options
author | rbuj <[email protected]> | 2019-03-03 10:43:16 +0100 |
---|---|---|
committer | rbuj <[email protected]> | 2019-04-09 21:40:56 +0200 |
commit | bc48c3e4443a5d7e2fc39f1cd08dd2fbb26effb3 (patch) | |
tree | 65ffd8dbdfa5abc3cd87f18d7058fafea1173915 /mate-dictionary/libgdict/gdict-client-context.c | |
parent | dd4c5965cd3fab114440d6b01e83153acdacd155 (diff) | |
download | mate-utils-bc48c3e4443a5d7e2fc39f1cd08dd2fbb26effb3.tar.bz2 mate-utils-bc48c3e4443a5d7e2fc39f1cd08dd2fbb26effb3.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-client-context.c')
-rw-r--r-- | mate-dictionary/libgdict/gdict-client-context.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/mate-dictionary/libgdict/gdict-client-context.c b/mate-dictionary/libgdict/gdict-client-context.c index af13e800..1728b474 100644 --- a/mate-dictionary/libgdict/gdict-client-context.c +++ b/mate-dictionary/libgdict/gdict-client-context.c @@ -478,11 +478,8 @@ gdict_client_context_finalize (GObject *object) if (priv->commands_queue) { - g_queue_foreach (priv->commands_queue, - (GFunc) gdict_command_free, - NULL); - g_queue_free (priv->commands_queue); - + g_queue_free_full (priv->commands_queue, + (GDestroyNotify) gdict_command_free); priv->commands_queue = NULL; } @@ -925,11 +922,8 @@ clear_command_queue (GdictClientContext *context) if (priv->commands_queue) { - g_queue_foreach (priv->commands_queue, - (GFunc) gdict_command_free, - NULL); - - g_queue_free (priv->commands_queue); + g_queue_free_full (priv->commands_queue, + (GDestroyNotify) gdict_command_free); } /* renew */ |