From 689ef73705a7536dc2504c22e77dbde1a8cfa8d8 Mon Sep 17 00:00:00 2001 From: Markus Makela Date: Mon, 7 Dec 2015 17:18:03 +0200 Subject: [PATCH] Fixed function prototype in maxadmin The DoUsage function had a difference between the prototype and the real signature. --- client/maxadmin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/maxadmin.c b/client/maxadmin.c index 6f8899163..2fce7b55d 100644 --- a/client/maxadmin.c +++ b/client/maxadmin.c @@ -67,7 +67,7 @@ static int setipaddress(struct in_addr *a, char *p); static int authMaxScale(int so, char *user, char *password); static int sendCommand(int so, char *cmd); static void DoSource(int so, char *cmd); -static void DoUsage(); +static void DoUsage(const char*); static int isquit(char *buf); static void PrintVersion(const char *progname); static void read_inifile(char **hostname, char **port, char **user, char **passwd,int*);