From d179d6428ae585a3b8a13479bfe4586e41de2ff9 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Tue, 16 Feb 2010 16:26:18 -0500 Subject: more using g_slice_new() instead of g_new() --- openbox/ping.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'openbox/ping.c') diff --git a/openbox/ping.c b/openbox/ping.c index b8479294..bf39a30a 100644 --- a/openbox/ping.c +++ b/openbox/ping.c @@ -75,7 +75,7 @@ void ping_start(struct _ObClient *client, ObPingEventHandler h) /* make sure we're not already pinging the client */ if (g_hash_table_find(ping_ids, find_client, client) != NULL) return; - t = g_new0(ObPingTarget, 1); + t = g_slice_new0(ObPingTarget); t->client = client; t->h = h; @@ -161,6 +161,6 @@ static void ping_end(ObClient *client, gpointer data) obt_main_loop_timeout_remove_data(ob_main_loop, ping_timeout, t, FALSE); - g_free(t); + g_slice_free(ObPingTarget, t); } } -- cgit v1.2.3