Commit 8b1b62dd authored by Jan Lindström's avatar Jan Lindström

Fix compiler failure on Windows.

parent 8e27845b
......@@ -369,7 +369,7 @@ extern double srv_defragment_fill_factor;
extern uint srv_defragment_frequency;
extern ulonglong srv_defragment_interval;
extern ulint srv_idle_flush_pct;
extern ulong srv_idle_flush_pct;
/* Number of IO operations per second the server can do */
extern ulong srv_io_capacity;
......
......@@ -257,7 +257,7 @@ UNIV_INTERN ulint srv_buf_pool_curr_size = 0;
UNIV_INTERN ulint srv_mem_pool_size = ULINT_MAX;
UNIV_INTERN ulint srv_lock_table_size = ULINT_MAX;
UNIV_INTERN ulint srv_idle_flush_pct = 100;
UNIV_INTERN ulong srv_idle_flush_pct = 100;
/* This parameter is deprecated. Use srv_n_io_[read|write]_threads
instead. */
......
......@@ -434,7 +434,7 @@ extern double srv_defragment_fill_factor;
extern uint srv_defragment_frequency;
extern ulonglong srv_defragment_interval;
extern ulint srv_idle_flush_pct;
extern ulong srv_idle_flush_pct;
/* Number of IO operations per second the server can do */
extern ulong srv_io_capacity;
......
......@@ -341,7 +341,7 @@ UNIV_INTERN ulong srv_cleaner_lsn_age_factor
UNIV_INTERN ulong srv_empty_free_list_algorithm
= SRV_EMPTY_FREE_LIST_BACKOFF;
UNIV_INTERN ulint srv_idle_flush_pct = 100;
UNIV_INTERN ulong srv_idle_flush_pct = 100;
/* This parameter is deprecated. Use srv_n_io_[read|write]_threads
instead. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment