From c8a4861f53e6ad8fbf4aa12e0dd8b1d30b4a2bf2 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Sun, 16 May 2021 11:42:38 -0700 Subject: [PATCH] mark create_filtered_list static This function is not used outside of its containing file. Squashes a -Wmissing-prototypes warning. --- cmd/smyrna/gui/frmobjectui.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/cmd/smyrna/gui/frmobjectui.c b/cmd/smyrna/gui/frmobjectui.c index 91ee3dbbd..7a5a6c2b0 100644 --- a/cmd/smyrna/gui/frmobjectui.c +++ b/cmd/smyrna/gui/frmobjectui.c @@ -317,12 +317,7 @@ static attr_t *pBinarySearch(attr_list * l, char *searchKey) } - - - - - -void create_filtered_list(char *prefix, attr_list * sl, attr_list * tl) +static void create_filtered_list(char *prefix, attr_list * sl, attr_list * tl) { int res; char buf[512]; -- 2.50.1