Skip to content

Commit

Permalink
fix signed/unsigned mismatch on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Feb 15, 2018
1 parent d49f8e9 commit f082c75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storage/innobase/srv/srv0srv.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2589,8 +2589,8 @@ DECLARE_THREAD(srv_worker_thread)(
slot = srv_reserve_slot(SRV_WORKER);

ut_a(srv_n_purge_threads > 1);
ut_a(my_atomic_loadlint(&srv_sys.n_threads_active[SRV_WORKER])
< static_cast<lint>(srv_n_purge_threads));
ut_a(ulong(my_atomic_loadlint(&srv_sys.n_threads_active[SRV_WORKER]))
< srv_n_purge_threads);

/* We need to ensure that the worker threads exit after the
purge coordinator thread. Otherwise the purge coordinator can
Expand Down

0 comments on commit f082c75

Please sign in to comment.