diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-08-28 10:26:00 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-09-07 17:59:53 +0000 |
commit | cc4ad7a3990826ca44470dbca3a5b03c35548cab (patch) | |
tree | f6144d593afacf6ae505b2add37998c7af4b4125 | |
parent | 3b888fdf89b4d8f4712c28b340c28604c8ff0b7e (diff) |
Remove unnecessary casts from malloc & free calls
These are not needed in C89 and later
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | src/Poly.c | 4 | ||||
-rw-r--r-- | src/Xrender.c | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -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; } |