We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d49f8e9 commit f082c75Copy full SHA for f082c75
storage/innobase/srv/srv0srv.cc
@@ -2589,8 +2589,8 @@ DECLARE_THREAD(srv_worker_thread)(
2589
slot = srv_reserve_slot(SRV_WORKER);
2590
2591
ut_a(srv_n_purge_threads > 1);
2592
- ut_a(my_atomic_loadlint(&srv_sys.n_threads_active[SRV_WORKER])
2593
- < static_cast<lint>(srv_n_purge_threads));
+ ut_a(ulong(my_atomic_loadlint(&srv_sys.n_threads_active[SRV_WORKER]))
+ < srv_n_purge_threads);
2594
2595
/* We need to ensure that the worker threads exit after the
2596
purge coordinator thread. Otherwise the purge coordinator can
0 commit comments