aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/client_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/client_main.c')
-rw-r--r--src/client_main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client_main.c b/src/client_main.c
index dd22508..c402b20 100644
--- a/src/client_main.c
+++ b/src/client_main.c
@@ -10,6 +10,7 @@
#include "const.h"
#include <getopt.h>
+#include <stdlib.h>
static struct settings default_settings()
{
@@ -62,7 +63,7 @@ static int parse_settings(struct settings *settings, int argc, char *argv[])
int main(int argc, char *argv[])
{
struct settings settings;
- struct client *client;
+ struct client *client = NULL;
int ret = 0;
ret = parse_settings(&settings, argc, argv);