Fixed some bad whitespace in config.c

This commit is contained in:
Brian Mock 2011-02-22 14:05:46 -08:00
parent 83d2da9da6
commit bd1575e1b2

View File

@ -789,12 +789,12 @@ conf_keybind_section(void)
void
init_conf(void)
{
if (get_conf(conf.confpath) == -1)
if(get_conf(conf.confpath) == -1)
{
warnx("parsing configuration file (%s) failed.", conf.confpath);
sprintf(conf.confpath, "%s/wmfs/wmfsrc", XDG_CONFIG_DIR);
warnx("Use the default configuration (%s).", conf.confpath);
if (get_conf(conf.confpath) == -1)
if(get_conf(conf.confpath) == -1)
errx(1, "parsing configuration file (%s) failed.", conf.confpath);
}