diff options
Diffstat (limited to 'openbox/actions/debug.c')
| -rw-r--r-- | openbox/actions/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbox/actions/debug.c b/openbox/actions/debug.c index 9ba7b1b0..99446bc4 100644 --- a/openbox/actions/debug.c +++ b/openbox/actions/debug.c @@ -19,7 +19,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, "string"))) o->str = obt_xml_node_string(n); @@ -30,7 +30,7 @@ static void free_func(gpointer options) { Options *o = options; g_free(o->str); - g_free(o); + g_slice_free(Options, o); } /* Always return FALSE because its not interactive */ |
