From e480386db854ef63519d4a873f22e9c89d82d9ef Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sat, 1 May 2021 19:27:11 -0700 Subject: [PATCH] mark compBB as static This function is not used outside of its containing file. --- cmd/tools/gvpack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tools/gvpack.c b/cmd/tools/gvpack.c index 5e410ec1c..16a4ffa5b 100644 --- a/cmd/tools/gvpack.c +++ b/cmd/tools/gvpack.c @@ -815,7 +815,7 @@ static Agraph_t **readGraphs(int *cp, GVC_t* gvc) * Compute the bounding box containing the graphs. * We can just use the bounding boxes of the graphs. */ -boxf compBB(Agraph_t ** gs, int cnt) +static boxf compBB(Agraph_t ** gs, int cnt) { boxf bb, bb2; int i; -- 2.50.1