From 8fb52e05f301d0e302919f59a5b50a80009c61bb Mon Sep 17 00:00:00 2001 From: thorkill Date: Tue, 30 Jun 2015 19:44:35 +0200 Subject: [PATCH] Define g_argv as static --- src/tincd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tincd.c b/src/tincd.c index 98c35812..ba6d885c 100644 --- a/src/tincd.c +++ b/src/tincd.c @@ -79,7 +79,7 @@ static bool do_chroot = false; static const char *switchuser = NULL; #endif -char **g_argv; /* a copy of the cmdline arguments */ +static char **g_argv; /* a copy of the cmdline arguments */ static int status = 1;