style fixes, no code changes
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 2 Sep 2012 12:29:14 +0000 (14:29 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 2 Sep 2012 12:29:14 +0000 (14:29 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
applets/individual.c
networking/ifupdown.c

index 1e74e4ce58d5509aee2c53e3cb8b63d09c15209f..4c468df06a032fa2a7b7835ad6f280bda7ee45ca 100644 (file)
@@ -14,7 +14,7 @@ const char *applet_name;
 int main(int argc, char **argv)
 {
        applet_name = argv[0];
-       return APPLET_main(argc,argv);
+       return APPLET_main(argc, argv);
 }
 
 void bb_show_usage(void)
index 9b34986964649320e952035cc614f7987ba980d7..ad0a9971b52809a4d96ad45f46b87c623be74dae 100644 (file)
@@ -1058,7 +1058,7 @@ static int iface_up(struct interface_defn_t *iface)
 
 static int iface_down(struct interface_defn_t *iface)
 {
-       if (!iface->method->down(iface,check)) return -1;
+       if (!iface->method->down(iface, check)) return -1;
        set_environ(iface, "stop", "pre-down");
        if (!execute_all(iface, "down")) return 0;
        if (!iface->method->down(iface, doit)) return 0;