diff options
author | Denis Vlasenko | 2007-05-30 00:29:55 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-05-30 00:29:55 +0000 |
commit | 4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b (patch) | |
tree | 7dfc507c1a7d14fb61d4fd0c68481e01b4a36ba1 /scripts/kconfig | |
parent | 4ef7d3a2de3df27dde80a64987202f10aebfe925 (diff) | |
download | busybox-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.zip busybox-4b924f3a5c9c549c75deed8bdda2cbd82fd7f64b.tar.gz |
whitespace fixes
Diffstat (limited to 'scripts/kconfig')
-rw-r--r-- | scripts/kconfig/conf.c | 2 | ||||
-rw-r--r-- | scripts/kconfig/expr.c | 2 | ||||
-rw-r--r-- | scripts/kconfig/gconf.c | 2 | ||||
-rw-r--r-- | scripts/kconfig/kconfig_load.c | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 02693b7..2a1a59f 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -536,7 +536,7 @@ int main(int ac, char **av) exit(0); } } - name = av[i]; + name = av[i]; if (!name) { printf(_("%s: Kconfig file missing\n"), av[0]); } diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c index 30e4f9d..6f39e7a 100644 --- a/scripts/kconfig/expr.c +++ b/scripts/kconfig/expr.c @@ -824,7 +824,7 @@ bool expr_depends_symbol(struct expr *dep, struct symbol *sym) default: ; } - return false; + return false; } struct expr *expr_extract_eq_and(struct expr **ep1, struct expr **ep2) diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 6d37299..fd3002b 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -1516,7 +1516,7 @@ static void display_tree(struct menu *menu) && (tree == tree2)) continue; /* - if (((menu != &rootmenu) && !(menu->flags & MENU_ROOT)) + if (((menu != &rootmenu) && !(menu->flags & MENU_ROOT)) || (view_mode == FULL_VIEW) || (view_mode == SPLIT_VIEW))*/ if (((view_mode == SINGLE_VIEW) && (menu->flags & MENU_ROOT)) diff --git a/scripts/kconfig/kconfig_load.c b/scripts/kconfig/kconfig_load.c index dbdcaad..5e87dd5 100644 --- a/scripts/kconfig/kconfig_load.c +++ b/scripts/kconfig/kconfig_load.c @@ -25,8 +25,8 @@ void kconfig_load(void) #define P(name,type,arg) \ { \ name ## _p = dlsym(handle, #name); \ - if ((error = dlerror())) { \ - fprintf(stderr, "%s\n", error); \ + if ((error = dlerror())) { \ + fprintf(stderr, "%s\n", error); \ exit(1); \ } \ } |