diff mbox

[U-Boot,v3,4/7] cosmetic, main: correct indentation/spacing issues

Message ID 1309364719-16219-5-git-send-email-jason.hobbs@calxeda.com
State Accepted
Headers show

Commit Message

Jason Hobbs June 29, 2011, 4:25 p.m. UTC
Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>
---
changes in v2:
- new in v2

 common/main.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

Comments

Wolfgang Denk July 25, 2011, 9:28 p.m. UTC | #1
Dear "Jason Hobbs",

In message <1309364719-16219-5-git-send-email-jason.hobbs@calxeda.com> you wrote:
> Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>
> ---
> changes in v2:
> - new in v2
> 
>  common/main.c |   12 ++++++------
>  1 files changed, 6 insertions(+), 6 deletions(-)

Applied, thanks.

Best regards,

Wolfgang Denk
diff mbox

Patch

diff --git a/common/main.c b/common/main.c
index 1a371b1..489c9e9 100644
--- a/common/main.c
+++ b/common/main.c
@@ -397,15 +397,15 @@  void main_loop (void)
 
 # ifdef CONFIG_MENUKEY
 	if (menukey == CONFIG_MENUKEY) {
-	    s = getenv("menucmd");
-	    if (s) {
+		s = getenv("menucmd");
+		if (s) {
 # ifndef CONFIG_SYS_HUSH_PARSER
-		run_command (s, 0);
+			run_command(s, 0);
 # else
-		parse_string_outer(s, FLAG_PARSE_SEMICOLON |
-				    FLAG_EXIT_FROM_LOOP);
+			parse_string_outer(s, FLAG_PARSE_SEMICOLON |
+						FLAG_EXIT_FROM_LOOP);
 # endif
-	    }
+		}
 	}
 #endif /* CONFIG_MENUKEY */
 #endif /* CONFIG_BOOTDELAY */