[git commit] style fixes, no code changes

Denys Vlasenko vda.linux at googlemail.com
Sun Sep 2 12:29:14 UTC 2012


commit: http://git.busybox.net/busybox/commit/?id=a0fd4a789c4f9bfa0a9c257aa6a96c3588be6ce5
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 applets/individual.c  |    2 +-
 networking/ifupdown.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/applets/individual.c b/applets/individual.c
index 1e74e4c..4c468df 100644
--- a/applets/individual.c
+++ b/applets/individual.c
@@ -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)
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index 9b34986..ad0a997 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -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;


More information about the busybox-cvs mailing list