mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-09 08:42:17 -04:00
check_cluster: linter fixes
This commit is contained in:
parent
ebb453f55e
commit
289f07d754
1 changed files with 5 additions and 3 deletions
|
|
@ -30,8 +30,10 @@ const char *email = "devel@monitoring-plugins.org";
|
|||
#include "utils.h"
|
||||
#include "utils_base.h"
|
||||
|
||||
#define CHECK_SERVICES 1
|
||||
#define CHECK_HOSTS 2
|
||||
enum {
|
||||
CHECK_SERVICES = 1,
|
||||
CHECK_HOSTS = 2
|
||||
};
|
||||
|
||||
static void print_help(void);
|
||||
void print_usage(void);
|
||||
|
|
@ -55,7 +57,7 @@ static char *label = NULL;
|
|||
|
||||
static int verbose = 0;
|
||||
|
||||
static int process_arguments(int, char **);
|
||||
static int process_arguments(int /*argc*/, char ** /*argv*/);
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
char *ptr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue