diff options
| author | Jason Hobbs <jason.hobbs@calxeda.com> | 2011-06-23 08:27:30 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2011-07-25 23:28:05 +0200 | 
| commit | 370d1e3e58a42d834c4ba9e1c3f44e346bef44df (patch) | |
| tree | b5b36443b4937f1188d198cbf8241cd245ef3006 /common/main.c | |
| parent | 3c766dccb38a71afa5702271bec5d2d416d87386 (diff) | |
| download | olio-uboot-2014.01-370d1e3e58a42d834c4ba9e1c3f44e346bef44df.tar.xz olio-uboot-2014.01-370d1e3e58a42d834c4ba9e1c3f44e346bef44df.zip | |
cosmetic, main: correct indentation/spacing issues
Signed-off-by: Jason Hobbs <jason.hobbs@calxeda.com>
Diffstat (limited to 'common/main.c')
| -rw-r--r-- | common/main.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/common/main.c b/common/main.c index 01931a1bf..212452681 100644 --- a/common/main.c +++ b/common/main.c @@ -391,15 +391,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 */ |