summaryrefslogtreecommitdiff
path: root/openbox/actions/restart.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbox/actions/restart.c')
-rw-r--r--openbox/actions/restart.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/actions/restart.c b/openbox/actions/restart.c
index 7d1689cb..dc9a218a 100644
--- a/openbox/actions/restart.c
+++ b/openbox/actions/restart.c
@@ -20,7 +20,7 @@ static gpointer setup_func(xmlNodePtr node)
xmlNodePtr n;
Options *o;
- o = g_new0(Options, 1);
+ o = g_slice_new0(Options);
if ((n = obt_xml_find_node(node, "command")) ||
(n = obt_xml_find_node(node, "execute")))
@@ -36,7 +36,7 @@ static void free_func(gpointer options)
{
Options *o = options;
g_free(o->cmd);
- g_free(o);
+ g_slice_free(Options, o);
}
/* Always return FALSE because its not interactive */