mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-04-15 22:00:06 -04:00
check_ntp: delare file local variables static
This commit is contained in:
parent
c7124379cd
commit
e3efbb796a
1 changed files with 4 additions and 4 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue