summaryrefslogtreecommitdiffstats
path: root/source/helper.c
diff options
context:
space:
mode:
authorDave Davenport <qball@blame.services>2021-06-27 12:21:26 +0200
committerDave Davenport <qball@blame.services>2021-06-27 12:21:26 +0200
commit067a3b82ade2ca8906ac46105358aaf4f272f77e (patch)
tree5dc566547e0ff00c619e4beb26d8eb9072c2e6bd /source/helper.c
parent33248f511ca9a468cd2a36182a8a4b5c9f22153b (diff)
[Config system] Add a bit of a hack to auto-add commandline options.
For new config system.
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 47c8a11f..efa59104 100644
--- a/source/helper.c
+++ b/source/helper.c
@@ -66,9 +66,9 @@ const char *const monitor_position_entries[] = {
"on monitor that has mouse pointer"
};
/** copy of the argc for use in commandline argument parser. */
-static int stored_argc = 0;
+int stored_argc = 0;
/** copy of the argv pointer for use in the commandline argument parser */
-static char **stored_argv = NULL;
+char **stored_argv = NULL;
char *helper_string_replace_if_exists_v ( char * string, GHashTable *h );