mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
Fix compilation on FC4.
This commit is contained in:
parent
dfa780e648
commit
401d3a0708
1 changed files with 2 additions and 1 deletions
|
@ -358,6 +358,7 @@ pid_t Instance_options::get_pid()
|
|||
|
||||
int Instance_options::complete_initialization(const char *default_path)
|
||||
{
|
||||
int arg_idx;
|
||||
const char *tmp;
|
||||
char *end;
|
||||
|
||||
|
@ -428,7 +429,7 @@ int Instance_options::complete_initialization(const char *default_path)
|
|||
if (add_to_argv(tmp))
|
||||
goto err;
|
||||
|
||||
int arg_idx= filled_default_options;
|
||||
arg_idx= filled_default_options;
|
||||
for (int opt_idx= 0; opt_idx < get_num_options(); ++opt_idx)
|
||||
{
|
||||
char option_str[MAX_OPTION_STR_LEN];
|
||||
|
|
Loading…
Reference in a new issue