aboutsummaryrefslogtreecommitdiff
path: root/config_file.c
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-11-09 23:08:57 +1300
committerDavid Phillips <dbphillipsnz@gmail.com>2015-11-09 23:08:57 +1300
commit322feca9dbf0170df6dc197c5e1e1b7211f2bb62 (patch)
tree4cb98e3b6192f1ac063891ebbc5462adf7ecac46 /config_file.c
parent319f5675e7337505aafd6ef937d9bb73b9e14831 (diff)
downloadparamano-322feca9dbf0170df6dc197c5e1e1b7211f2bb62.tar.xz
Misc style alignment
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();