]> granicus.if.org Git - graphviz/commitdiff
myiddisc_open: remove unnecessary casts of 'gctx'
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 26 Nov 2021 18:04:31 +0000 (10:04 -0800)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 3 Dec 2021 01:12:50 +0000 (17:12 -0800)
tclpkg/tcldot/tcldot-id.c

index 85f783fcc1e08c1e2c7f7be6907dce107fd5656b..a7daf03a24515fcf9c511454d3cd26956ff33f2b 100644 (file)
@@ -19,7 +19,7 @@ static void *myiddisc_open(Agraph_t *g, Agdisc_t *disc) {
     gctx = malloc(sizeof(gctx_t));
     gctx->g = g;
     gctx->ictx = ictx;
-    return (void *)gctx;
+    return gctx;
 }
 static long myiddisc_map(void *state, int objtype, char *str, uint64_t *id, int createflag) {
     (void)objtype;