From 0d4685f4595c898659e2d9d1d8b02934ebcd877e Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 2 Jan 2021 23:29:35 +0100 Subject: [PATCH] preliminarily turn off fcn nlist_model_find() to avoid compiler warning --- src/frontend/inpcom.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index d5cee443c..fb790714c 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -2228,6 +2228,7 @@ static const char *nlist_find(const struct nlist *nlist, const char *name) return NULL; } +#if 0 /* see line 2452 */ static const char *nlist_model_find( const struct nlist *nlist, const char *name) { @@ -2237,6 +2238,7 @@ static const char *nlist_model_find( return nlist->names[i]; return NULL; } +#endif static void nlist_adjoin(struct nlist *nlist, char *name) {