check_cluster: linter fixes

This commit is contained in:
RincewindsHat 2024-10-31 02:57:07 +01:00
parent ebb453f55e
commit 289f07d754

View file

@ -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;