diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-24 22:03:38 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-24 22:03:38 +0000 |
| commit | d56e90fac8e821f3773372e9342d60de169963b9 (patch) | |
| tree | 97df7d75b9f33f9544e114a893a3328e474f9114 /openbox/event.c | |
| parent | 3443454f33f88e10f187b78594ecfb5c09e1448d (diff) | |
use g_hash_table properly
Diffstat (limited to 'openbox/event.c')
| -rw-r--r-- | openbox/event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/event.c b/openbox/event.c index 4be03d94..3448194e 100644 --- a/openbox/event.c +++ b/openbox/event.c @@ -253,7 +253,7 @@ void event_process(XEvent *e) break; } - client = g_hash_table_lookup(client_map, (gpointer)window); + client = g_hash_table_lookup(client_map, &window); /* deal with it in the kernel */ if (client) |
