diff options
Diffstat (limited to 'src/worker_main.c')
-rw-r--r-- | src/worker_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/worker_main.c b/src/worker_main.c index 01f87b6..eaaab4d 100644 --- a/src/worker_main.c +++ b/src/worker_main.c @@ -11,13 +11,13 @@ #include <getopt.h> -static struct settings default_settings() +static struct settings default_settings(void) { struct settings settings = {DEFAULT_HOST, DEFAULT_PORT}; return settings; } -const char *get_usage_string() +const char *get_usage_string(void) { return "[-h|--help] [-V|--version] [-H|--host HOST] [-p|--port PORT]"; } |