From 2f00186730e2150e7e2c47e4b4e7e8b2f9ab3267 Mon Sep 17 00:00:00 2001 From: Jim Warner Date: Sun, 2 Jan 2022 00:00:09 -0600 Subject: [PATCH] sysctl: eliminate some warnings of '-Wunused-function' Signed-off-by: Jim Warner --- sysctl.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sysctl.c b/sysctl.c index aa970711..adf02387 100644 --- a/sysctl.c +++ b/sysctl.c @@ -139,6 +139,7 @@ static void slashdot(char *restrict p, char old, char new) } } +#if 0 // avoid '-Wunused-function' warning static void setting_free(SysctlSetting *s) { if (!s) return; @@ -148,6 +149,7 @@ static void setting_free(SysctlSetting *s) { free(s->value); free(s); } +#endif static SysctlSetting *setting_new( const char *key, @@ -285,6 +287,7 @@ static void rstrip(char *line) end[1] = '\0'; } +#if 0 // avoid '-Wunused-function' warning /* * Strip the leading and trailing spaces from a string */ @@ -308,6 +311,7 @@ static char *StripLeadingAndTrailingSpaces(char *oneline) return t; } +#endif /* * Read a sysctl setting