Commit 106b16a5 authored by Marko Mäkelä's avatar Marko Mäkelä

MDEV-26356 fixup: integer type mismatch on 32-bit

parent 9d8e83b6
......@@ -1896,7 +1896,7 @@ void purge_coordinator_state::refresh(bool full)
max_age= log_sys.max_checkpoint_age;
mysql_mutex_unlock(&log_sys.mutex);
lsn_age_factor= ((log_sys.get_lsn() - last) * 100) / max_age;
lsn_age_factor= ulint(((log_sys.get_lsn() - last) * 100) / max_age);
}
......
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