From 7a5eeb2d9c5d02b4129ed5792f4b4f879a140b06 Mon Sep 17 00:00:00 2001 From: rlar Date: Fri, 21 Sep 2012 21:14:52 +0200 Subject: [PATCH] drop a superfluous cast --- src/frontend/postcoms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/postcoms.c b/src/frontend/postcoms.c index 7c5f10489..7dc45b296 100644 --- a/src/frontend/postcoms.c +++ b/src/frontend/postcoms.c @@ -843,7 +843,7 @@ killplot(struct plot *pl) wl_free(pl->pl_commands); tfree(pl->pl_date); /* va: also tfree (memory leak) */ if (pl->pl_ccom) /* va: also tfree (memory leak) */ - throwaway((struct ccom *)pl->pl_ccom); + throwaway(pl->pl_ccom); if (pl->pl_env) { /* The 'environment' for this plot. */ /* va: HOW to do? */