summaryrefslogtreecommitdiffstats
path: root/source/helper.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2015-03-12 08:39:50 +0100
committerDave Davenport <qball@gmpclient.org>2015-03-12 08:39:50 +0100
commit42b86015c3a893af2d70be5443c888e98b99dee1 (patch)
treeec1865147bd502068c60e42af786b7d3f7b083c0 /source/helper.c
parent4fad02225e836e838ef1f48017a576e73c694edf (diff)
Make pointers static.
Diffstat (limited to 'source/helper.c')
-rw-r--r--source/helper.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/helper.c b/source/helper.c
index bd55f24e..9c43a625 100644
--- a/source/helper.c
+++ b/source/helper.c
@@ -38,8 +38,8 @@
#include "helper.h"
#include "rofi.h"
-int stored_argc = 0;
-char **stored_argv = NULL;
+static int stored_argc = 0;
+static char **stored_argv = NULL;
void cmd_set_arguments ( int argc, char **argv )
{