1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

cleanup: unused function argument

This commit is contained in:
Sergei Golubchik
2024-01-26 12:19:47 +01:00
parent aa09cb3b11
commit 07ec1a9e37
11 changed files with 12 additions and 96 deletions

View File

@@ -1715,8 +1715,7 @@ int plugin_init(int *argc, char **argv, int flags)
{
char path[FN_REFLEN + 1];
build_table_filename(path, sizeof(path) - 1, "mysql", "plugin", reg_ext, 0);
Table_type ttype= dd_frm_type(0, path, &plugin_table_engine_name,
NULL, NULL);
Table_type ttype= dd_frm_type(0, path, &plugin_table_engine_name, NULL);
if (ttype != TABLE_TYPE_NORMAL)
plugin_table_engine_name=empty_clex_str;
}