summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
Diffstat (limited to 'desktop')
-rw-r--r--desktop/options.c4
-rw-r--r--desktop/options.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/desktop/options.c b/desktop/options.c
index cfa89abcc..9a1111c83 100644
--- a/desktop/options.c
+++ b/desktop/options.c
@@ -132,9 +132,9 @@ int option_scale = 100;
bool option_incremental_reflow = true;
/* Minimum time between HTML reflows while objects are fetching */
#ifdef riscos
-int option_min_reflow_period = 100; /* time in cs */
+unsigned int option_min_reflow_period = 100; /* time in cs */
#else
-int option_min_reflow_period = 25; /* time in cs */
+unsigned int option_min_reflow_period = 25; /* time in cs */
#endif
/* Fetcher configuration */
diff --git a/desktop/options.h b/desktop/options.h
index 6b9fd66e7..89e99969b 100644
--- a/desktop/options.h
+++ b/desktop/options.h
@@ -81,7 +81,7 @@ extern int option_window_screen_height;
extern int option_toolbar_status_width;
extern int option_scale;
extern bool option_incremental_reflow;
-extern int option_min_reflow_period;
+extern unsigned int option_min_reflow_period;
/* Fetcher configuration. */
extern int option_max_fetchers;