Commit e0cc5fd0 authored by bar@mysql.com's avatar bar@mysql.com

mysqld.cc:

  Removing wrong MYF(0) argument.
parent 904c75ed
......@@ -2832,7 +2832,7 @@ static int init_common_variables(const char *conf_file_name, int argc,
if (!(my_default_lc_time_names=
my_locale_by_name(lc_time_names_name)))
{
sql_print_error("Unknown locale: '%s'", MYF(0), lc_time_names_name);
sql_print_error("Unknown locale: '%s'", lc_time_names_name);
return 1;
}
global_system_variables.lc_time_names= my_default_lc_time_names;
......
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