Add missing return statement to pihelper_read_config
Signed-off-by: William Brawner <me@wbrawner.com>
This commit is contained in:
parent
e9600507ef
commit
05e8690fb0
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ void pihelper_config_set_api_key(pihole_config * config, char * api_key) {
|
||||||
}
|
}
|
||||||
|
|
||||||
pihole_config * pihelper_read_config(char * config_path) {
|
pihole_config * pihelper_read_config(char * config_path) {
|
||||||
read_config(config_path);
|
return read_config(config_path);
|
||||||
}
|
}
|
||||||
|
|
||||||
int pihelper_save_config(pihole_config * config, char * config_path) {
|
int pihelper_save_config(pihole_config * config, char * config_path) {
|
||||||
|
|
Loading…
Reference in a new issue