From e3efbb796a58e02eceeef2e12b1f159d687a1b2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20K=C3=A4stle?= <12514511+RincewindsHat@users.noreply.github.com> Date: Fri, 8 Nov 2024 12:35:27 +0100 Subject: check_ntp: delare file local variables static diff --git a/plugins/check_ntp.c b/plugins/check_ntp.c index 55a4946..d33f878 100644 --- a/plugins/check_ntp.c +++ b/plugins/check_ntp.c @@ -47,10 +47,10 @@ static bool do_jitter = false; static char *jwarn="5000"; static char *jcrit="10000"; -int process_arguments (int, char **); -thresholds *offset_thresholds = NULL; -thresholds *jitter_thresholds = NULL; -void print_help (void); +static int process_arguments (int /*argc*/, char ** /*argv*/); +static thresholds *offset_thresholds = NULL; +static thresholds *jitter_thresholds = NULL; +static void print_help (void); void print_usage (void); /* number of times to perform each request to get a good average. */ -- cgit v0.10-9-g596f