From b9ce0d116a61d4c0e000672a6efbc235db709f75 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 8 Feb 2021 07:17:28 -0500 Subject: [PATCH] panel-plugin/xfce4-hdaps.c: replace panel_slice_free with g_slice_free. Same deal as with panel_slice_new0/g_slice_new0. Apparently this was deprecated and is now gone in 4.16. --- panel-plugin/xfce4-hdaps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panel-plugin/xfce4-hdaps.c b/panel-plugin/xfce4-hdaps.c index 59581df..ac8b2d7 100644 --- a/panel-plugin/xfce4-hdaps.c +++ b/panel-plugin/xfce4-hdaps.c @@ -311,7 +311,7 @@ static void hdaps_free(XfcePanelPlugin *plugin, } /* ...and finally free the plugin structure. */ - panel_slice_free(HdapsPlugin, hdaps); + g_slice_free(HdapsPlugin, hdaps); } -- 2.43.2