summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-11-13 12:42:51 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-11-13 14:17:11 -0800
commit0d07746403f9fbdb9e29764e685b4b7552d4115d (patch)
tree2b058fe8578033364b1500453e8fdef1350f5535
parent02517a9c7b706ceaca97d34413debb829e23389c (diff)
Remove unnecessary cast of XFree() argument
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--xstdcmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xstdcmap.c b/xstdcmap.c
index 3d9a0f7..3759471 100644
--- a/xstdcmap.c
+++ b/xstdcmap.c
@@ -326,7 +326,7 @@ doIndividualColormaps(void)
if (!status)
break;
}
- XFree((char *) vinfo);
+ XFree(vinfo);
return status;
}