]> granicus.if.org Git - graphviz/commitdiff
mark clusterGraph as static
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Wed, 23 Jun 2021 00:24:23 +0000 (17:24 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 25 Jun 2021 14:39:33 +0000 (07:39 -0700)
This function is not used outside of its containing file.

cmd/gvmap/cluster.c

index fe2aa9e9e774e1d1fc39b192de26d441e49a94db..aa92c25f4058436c7bdef214f436118f3744e834 100644 (file)
@@ -137,7 +137,7 @@ static Agraph_t *gread(FILE * fp)
     return agread(fp, (Agdisc_t *) 0);
 }
 
-void clusterGraph (Agraph_t* g, int maxcluster, int clustering_method){
+static void clusterGraph (Agraph_t* g, int maxcluster, int clustering_method){
   initDotIO(g);
   attached_clustering(g, maxcluster, clustering_method);
   return;