Change return value to true instead for command_event_save_core_config
This commit is contained in:
parent
675b8bb9e2
commit
311b454a2c
|
@ -1395,7 +1395,6 @@ static bool command_event_save_config(
|
|||
static bool command_event_save_core_config(void)
|
||||
{
|
||||
char msg[128];
|
||||
bool ret = false;
|
||||
bool found_path = false;
|
||||
bool overrides_active = false;
|
||||
const char *core_path = NULL;
|
||||
|
@ -1502,7 +1501,7 @@ static bool command_event_save_core_config(void)
|
|||
free(config_dir);
|
||||
free(config_name);
|
||||
free(config_path);
|
||||
return ret;
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue