diff options
| author | Dana Jansens <danakj@orodu.net> | 2010-02-16 16:04:47 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2010-02-16 16:04:47 -0500 |
| commit | d45af3cb45f35ba639efac15675ed10b3515a7f0 (patch) | |
| tree | a500646b236c2797f858706288642798df587afc /openbox/client.c | |
| parent | 343ca097f7321983e62cac14791d62e1331d8d87 (diff) | |
missed a g_free() that should be g_slice_free()
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 2 |
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, |
