From 2af7db2dfa9a685e9a93a99adb69f7bea4568907 Mon Sep 17 00:00:00 2001 From: Will Storey Date: Sat, 14 Sep 2019 11:00:35 -0700 Subject: [PATCH] Remove unused function --- src/core/misc.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/core/misc.c b/src/core/misc.c index d612f587..c959ad91 100644 --- a/src/core/misc.c +++ b/src/core/misc.c @@ -270,11 +270,6 @@ char *gslist_to_string(GSList *list, const char *delimiter) return ret; } -void hash_save_key(char *key, void *value, GSList **list) -{ - *list = g_slist_append(*list, key); -} - /* remove all the options from the optlist hash table that are valid for the * command cmd */ GList *optlist_remove_known(const char *cmd, GHashTable *optlist)