Skip to content

Commit

Permalink
Fix compiler failure on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Lindström committed Nov 4, 2014
1 parent 8e27845 commit 8b1b62d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion storage/innobase/include/srv0srv.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion storage/innobase/srv/srv0srv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion storage/xtradb/include/srv0srv.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion storage/xtradb/srv/srv0srv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit 8b1b62d

Please sign in to comment.