diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-10-15 13:10:52 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-10-15 13:10:52 -0700 |
commit | c420f450d0a2b1f26d4043334bb8b6524fea4b07 (patch) | |
tree | c78fad4226f66e4003a2991a26d31cf11298a196 /do_dots.c | |
parent | 2900d7a7e7929414268cb142bf00c57d370e1396 (diff) |
Stop casting return value of malloc() and calloc()
Not needed in C89 and later, and may hide errors
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'do_dots.c')
-rw-r--r-- | do_dots.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -31,7 +31,7 @@ InitDots(XParms xp, Parms p, int64_t reps) { pgc = xp->fggc; - points = (XPoint *)malloc(p->objects * sizeof(XPoint)); + points = malloc(p->objects * sizeof(XPoint)); for (int i = 0; i != p->objects; i++) { points[i].x = 2 * (i/MAXROWS); |