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 1e74e4c..4c468df 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 9b34986..ad0a997 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;