diff options
author | arg@10ksloc.org <unknown> | 2006-08-07 08:19:58 +0200 |
---|---|---|
committer | arg@10ksloc.org <unknown> | 2006-08-07 08:19:58 +0200 |
commit | d54444cfd73f5006bf58e29e50a4ed28d08f9435 (patch) | |
tree | 6d739e4ba8bc75e16e16706e70c55d3ddab51814 /main.c | |
parent | 525ef3c178a889266affee5853870907751e074a (diff) | |
download | dwm-d54444cfd73f5006bf58e29e50a4ed28d08f9435.tar.gz |
changed getproto, maybe that might fix the killclient issue reported on the list
Diffstat (limited to 'main.c')
-rw-r--r-- | main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main.c b/main.c index b1372d0..4c7a1a4 100644 --- a/main.c +++ b/main.c @@ -102,9 +102,10 @@ getproto(Window w) int protos = 0; int i; long res; - unsigned char *protocols; + Atom *protocols; - res = win_property(w, wmatom[WMProtocols], XA_ATOM, 20L, &protocols); + res = win_property(w, wmatom[WMProtocols], XA_ATOM, 20L, + ((unsigned char **)&protocols)); if(res <= 0) { return protos; } |