Commit 74d648db authored by Marko Mäkelä's avatar Marko Mäkelä

Make a size_t-to-uint conversion explicit

parent 4fbf8645
/* Copyright (c) 2000, 2015, Oracle and/or its affiliates.
Copyright (c) 2008, 2017, MariaDB Corporation.
Copyright (c) 2008, 2019, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
......@@ -4299,7 +4299,7 @@ static int init_common_variables()
if (IS_SYSVAR_AUTOSIZE(&server_version_ptr))
set_server_version(server_version, sizeof(server_version));
mysql_real_data_home_len= strlen(mysql_real_data_home);
mysql_real_data_home_len= uint(strlen(mysql_real_data_home));
if (!opt_abort)
{
......
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