summaryrefslogtreecommitdiff
path: root/frontends/amiga/theme.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/theme.c
parentdf2b14ed5f26f6aabaad548d38a24a724b242047 (diff)
downloadnetsurf-88ae1ff267c541ded537672ac7b7f29308ad701d.tar.gz
netsurf-88ae1ff267c541ded537672ac7b7f29308ad701d.tar.bz2
Ensure variables are declared correctly
Diffstat (limited to 'frontends/amiga/theme.c')
-rw-r--r--frontends/amiga/theme.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/frontends/amiga/theme.c b/frontends/amiga/theme.c
index 40a9503c8..e18ee3365 100644
--- a/frontends/amiga/theme.c
+++ b/frontends/amiga/theme.c
@@ -51,9 +51,12 @@
#include "amiga/theme.h"
#include "amiga/misc.h"
-struct BitMap *throbber = NULL;
-struct bitmap *throbber_nsbm = NULL;
-int throbber_frames, throbber_update_interval;
+ULONG throbber_width;
+ULONG throbber_height;
+
+static struct BitMap *throbber = NULL;
+static struct bitmap *throbber_nsbm = NULL;
+static int throbber_frames, throbber_update_interval;
static Object *mouseptrobj[AMI_LASTPOINTER+1];
static struct BitMap *mouseptrbm[AMI_LASTPOINTER+1];