]> granicus.if.org Git - graphviz/commitdiff
remove a useless return statement
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 23 Jun 2021 00:25:02 +0000 (17:25 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 25 Jun 2021 14:39:33 +0000 (07:39 -0700)
cmd/gvmap/cluster.c

index aa92c25f4058436c7bdef214f436118f3744e834..d7613ad6b678f0393f6ee2190c70bb9f1f6524a7 100644 (file)
@@ -140,8 +140,6 @@ static Agraph_t *gread(FILE * fp)
 static void clusterGraph (Agraph_t* g, int maxcluster, int clustering_method){
   initDotIO(g);
   attached_clustering(g, maxcluster, clustering_method);
-  return;
-
 }
 
 int main(int argc, char *argv[])