Code style fix

This commit is contained in:
Simon Long 2024-01-08 10:57:33 +00:00
parent 42b8164314
commit 351d0a30ad

View file

@ -1498,12 +1498,12 @@ rcxml_read(const char *filename)
} else {
/* merge user config with system config */
rcxml = strdup_printf("%s/rc.xml", sys_config_dir());
rcxml_read_file (rcxml);
free (rcxml);
rcxml_read_file(rcxml);
free(rcxml);
rcxml = strdup_printf("%s/rc.xml", user_config_dir());
rcxml_read_file (rcxml);
free (rcxml);
rcxml_read_file(rcxml);
free(rcxml);
}
post_processing();