From bd1575e1b25bf119fedc4dfe9c25a96fb7a3e1bb Mon Sep 17 00:00:00 2001 From: Brian Mock Date: Tue, 22 Feb 2011 14:05:46 -0800 Subject: [PATCH] Fixed some bad whitespace in config.c --- src/config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.c b/src/config.c index 264b87f..d820988 100644 --- a/src/config.c +++ b/src/config.c @@ -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); }