summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Poly.c4
-rw-r--r--src/Xrender.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/Poly.c b/src/Poly.c
index 69a2da6..c6be3b0 100644
--- a/src/Poly.c
+++ b/src/Poly.c
@@ -249,8 +249,8 @@ XRenderCompositeDoublePoly (Display *dpy,
XFixed x, y, prevx = 0, prevy = 0, firstx = 0, firsty = 0;
XFixed top = 0, bottom = 0; /* GCCism */
- edges = (Edge *) Xmalloc (npoints * sizeof (Edge) +
- (npoints * npoints * sizeof (XTrapezoid)));
+ edges = Xmalloc ((npoints * sizeof (Edge)) +
+ (npoints * npoints * sizeof (XTrapezoid)));
if (!edges)
return;
traps = (XTrapezoid *) (edges + npoints);
diff --git a/src/Xrender.c b/src/Xrender.c
index 71cf3e6..20134a6 100644
--- a/src/Xrender.c
+++ b/src/Xrender.c
@@ -194,7 +194,7 @@ XRenderExtAddDisplay (XRenderExtInfo *extinfo,
{
XRenderExtDisplayInfo *dpyinfo;
- dpyinfo = (XRenderExtDisplayInfo *) Xmalloc (sizeof (XRenderExtDisplayInfo));
+ dpyinfo = Xmalloc (sizeof (XRenderExtDisplayInfo));
if (!dpyinfo) return NULL;
dpyinfo->display = dpy;
dpyinfo->info = NULL;
@@ -273,7 +273,7 @@ XRenderExtRemoveDisplay (XRenderExtInfo *extinfo, Display *dpy)
if (dpyinfo == extinfo->cur) extinfo->cur = NULL; /* flush cache */
_XUnlockMutex(_Xglobal_lock);
- Xfree ((char *) dpyinfo);
+ Xfree (dpyinfo);
return 1;
}