aboutsummaryrefslogtreecommitdiff
path: root/config_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'config_file.c')
-rw-r--r--config_file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/config_file.c b/config_file.c
index d5a3336..9e0b4ae 100644
--- a/config_file.c
+++ b/config_file.c
@@ -51,7 +51,7 @@ void config_init()
if (access(config.file_name, R_OK) == -1)
strncpy(config.file_name, PARAMANO_CONF, sizeof(config.file_name)); /* fallback to system-wide */
- if(!config_open(&config))
+ if (!config_open(&config))
{
g_warning(_("Failed to open config files!\n"));
return;
@@ -77,7 +77,7 @@ void config_init()
gboolean config_open(struct config_file* config_file)
{
- if(config_file->key_file)
+ if (config_file->key_file)
g_key_file_free(config_file->key_file);
config_file->key_file = g_key_file_new();