diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-11-13 12:42:51 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-11-13 14:17:11 -0800 |
commit | 0d07746403f9fbdb9e29764e685b4b7552d4115d (patch) | |
tree | 2b058fe8578033364b1500453e8fdef1350f5535 /xstdcmap.c | |
parent | 02517a9c7b706ceaca97d34413debb829e23389c (diff) |
Remove unnecessary cast of XFree() argument
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'xstdcmap.c')
-rw-r--r-- | xstdcmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -326,7 +326,7 @@ doIndividualColormaps(void) if (!status) break; } - XFree((char *) vinfo); + XFree(vinfo); return status; } |