From 2bdc37e9200bef650867d7b9b2a251327b922629 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 24 Mar 2003 19:10:33 +0000 Subject: [PATCH] double ptrs suck! yay shape! --- openbox/event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/event.c b/openbox/event.c index 0088085b..1844e3f6 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -565,7 +565,7 @@ static void event_handle_client(Client *client, XEvent *e) ; #ifdef SHAPE if (extensions_shape && e->type == extensions_shape_event_basep) { - client->shaped = ((XShapeEvent*)&e)->shaped; + client->shaped = ((XShapeEvent*)e)->shaped; engine_frame_adjust_shape(client->frame); } #endif -- 2.45.2