summaryrefslogtreecommitdiff
path: root/openbox/client.c
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2010-02-16 16:04:47 -0500
committerDana Jansens <danakj@orodu.net>2010-02-16 16:04:47 -0500
commitd45af3cb45f35ba639efac15675ed10b3515a7f0 (patch)
treea500646b236c2797f858706288642798df587afc /openbox/client.c
parent343ca097f7321983e62cac14791d62e1331d8d87 (diff)
missed a g_free() that should be g_slice_free()
Diffstat (limited to 'openbox/client.c')
-rw-r--r--openbox/client.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/client.c b/openbox/client.c
index 08ce6f37..f8c3c457 100644
--- a/openbox/client.c
+++ b/openbox/client.c
@@ -702,7 +702,7 @@ void client_fake_unmanage(ObClient *self)
/* this is all that got allocated to get the decorations */
frame_free(self->frame);
- g_free(self);
+ g_slice_free(ObClient, self);
}
static gboolean client_can_steal_focus(ObClient *self, Time steal_time,