(core_options.c) Small change
This commit is contained in:
parent
2929073a42
commit
41b5ae5dd6
|
@ -173,9 +173,9 @@ error:
|
|||
|
||||
bool core_option_updated(core_option_manager_t *opt)
|
||||
{
|
||||
if (opt)
|
||||
return opt->updated;
|
||||
if (!opt)
|
||||
return false;
|
||||
return opt->updated;
|
||||
}
|
||||
|
||||
void core_option_flush(core_option_manager_t *opt)
|
||||
|
|
Loading…
Reference in New Issue