projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
525ef3c
)
changed getproto, maybe that might fix the killclient issue reported on the list
author
arg@10ksloc.org
<unknown>
Mon, 7 Aug 2006 06:19:58 +0000
(08:19 +0200)
committer
arg@10ksloc.org
<unknown>
Mon, 7 Aug 2006 06:19:58 +0000
(08:19 +0200)
main.c
patch
|
blob
|
history
diff --git
a/main.c
b/main.c
index b1372d0c846b6a11fee8d400564898d2fe452cf0..4c7a1a4336c1b37be3b88e81db614f76d2602c70 100644
(file)
--- 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;
}