summaryrefslogtreecommitdiff
path: root/zwgc/xselect.c
diff options
context:
space:
mode:
authorGravatar Kenneth G Raeburn <raeburn@mit.edu>1990-11-04 05:52:27 +0000
committerGravatar Kenneth G Raeburn <raeburn@mit.edu>1990-11-04 05:52:27 +0000
commitf4cc9a848663845fb4fb9002875f6da84e70347b (patch)
treeaf46922c3ec8b89c5051f67a6962fc5bee98dbb5 /zwgc/xselect.c
parent36589e3b8e19969282b278221f94c2c433b72f24 (diff)
Cast argument of XFree to char* to prevent compiler complaints.
Diffstat (limited to 'zwgc/xselect.c')
-rw-r--r--zwgc/xselect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/zwgc/xselect.c b/zwgc/xselect.c
index b989b66..85303a2 100644
--- a/zwgc/xselect.c
+++ b/zwgc/xselect.c
@@ -104,7 +104,7 @@ static void xselSetProperties(dpy,w,property,target,selreq)
for (i=0;i<alistsize;i+=2)
xselSetProperties(dpy,w,alist[i+1],alist[i],selreq);
- XFree(alist);
+ XFree((char *) alist);
} else if (target==ZA_TIMESTAMP) {
ChangeProp(XA_INTEGER,32,&ownership_start,1);
XSync(dpy,0);