mirror of
https://github.com/labwc/labwc.git
synced 2026-04-12 08:21:13 -04:00
Code style fix
This commit is contained in:
parent
42b8164314
commit
351d0a30ad
1 changed files with 4 additions and 4 deletions
|
|
@ -1498,12 +1498,12 @@ rcxml_read(const char *filename)
|
||||||
} else {
|
} else {
|
||||||
/* merge user config with system config */
|
/* merge user config with system config */
|
||||||
rcxml = strdup_printf("%s/rc.xml", sys_config_dir());
|
rcxml = strdup_printf("%s/rc.xml", sys_config_dir());
|
||||||
rcxml_read_file (rcxml);
|
rcxml_read_file(rcxml);
|
||||||
free (rcxml);
|
free(rcxml);
|
||||||
|
|
||||||
rcxml = strdup_printf("%s/rc.xml", user_config_dir());
|
rcxml = strdup_printf("%s/rc.xml", user_config_dir());
|
||||||
rcxml_read_file (rcxml);
|
rcxml_read_file(rcxml);
|
||||||
free (rcxml);
|
free(rcxml);
|
||||||
}
|
}
|
||||||
|
|
||||||
post_processing();
|
post_processing();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue