aboutsummaryrefslogtreecommitdiff
path: root/libX11/src/GetFPath.c
diff options
context:
space:
mode:
Diffstat (limited to 'libX11/src/GetFPath.c')
-rw-r--r--libX11/src/GetFPath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libX11/src/GetFPath.c b/libX11/src/GetFPath.c
index 8f8c6144a..76ff7327b 100644
--- a/libX11/src/GetFPath.c
+++ b/libX11/src/GetFPath.c
@@ -57,7 +57,7 @@ char **XGetFontPath(
}
if ((! flist) || (! ch)) {
- if (flist) Xfree((char *) flist);
+ if (flist) Xfree(flist);
if (ch) Xfree(ch);
_XEatDataWords(dpy, rep.length);
UnlockDisplay(dpy);
@@ -93,7 +93,7 @@ XFreeFontPath (char **list)
{
if (list != NULL) {
Xfree (list[0]-1);
- Xfree ((char *)list);
+ Xfree (list);
}
return 1;
}