summaryrefslogtreecommitdiff
path: root/frontends/amiga/gui_options.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2016-06-02 00:44:20 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2016-06-02 00:44:20 +0100
commit88ae1ff267c541ded537672ac7b7f29308ad701d (patch)
treea7ec98ff90d34e39503d8e5cbe34e56ab3bd853d /frontends/amiga/gui_options.c
parentdf2b14ed5f26f6aabaad548d38a24a724b242047 (diff)
downloadnetsurf-88ae1ff267c541ded537672ac7b7f29308ad701d.tar.gz
netsurf-88ae1ff267c541ded537672ac7b7f29308ad701d.tar.bz2
Ensure variables are declared correctly
Diffstat (limited to 'frontends/amiga/gui_options.c')
-rwxr-xr-xfrontends/amiga/gui_options.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/frontends/amiga/gui_options.c b/frontends/amiga/gui_options.c
index f8be3bc6a..340af4b27 100755
--- a/frontends/amiga/gui_options.c
+++ b/frontends/amiga/gui_options.c
@@ -232,16 +232,18 @@ struct ami_gui_opts_window {
#endif
};
+char *current_user_options = NULL;
+
static struct ami_gui_opts_window *gow = NULL;
-CONST_STRPTR tabs[OPTS_MAX_TABS];
+static CONST_STRPTR tabs[OPTS_MAX_TABS];
static STRPTR screenopts[OPTS_MAX_SCREEN];
-CONST_STRPTR proxyopts[OPTS_MAX_PROXY];
-CONST_STRPTR nativebmopts[OPTS_MAX_NATIVEBM];
-CONST_STRPTR ditheropts[OPTS_MAX_DITHER];
-CONST_STRPTR fontopts[6];
-CONST_STRPTR gadlab[OPTS_LAST];
-struct List *websearch_list;
+static CONST_STRPTR proxyopts[OPTS_MAX_PROXY];
+static CONST_STRPTR nativebmopts[OPTS_MAX_NATIVEBM];
+static CONST_STRPTR ditheropts[OPTS_MAX_DITHER];
+static CONST_STRPTR fontopts[6];
+static CONST_STRPTR gadlab[OPTS_LAST];
+static struct List *websearch_list;
#ifndef __amigaos4__
static void ami_gui_opts_array_to_list(struct List *list, const char *array[], int type)