diff options
Diffstat (limited to 'common')
| -rw-r--r-- | common/cmd_bmp.c | 6 | ||||
| -rw-r--r-- | common/main.c | 2 | 
2 files changed, 4 insertions, 4 deletions
| diff --git a/common/cmd_bmp.c b/common/cmd_bmp.c index c093fefd4..cc904c253 100644 --- a/common/cmd_bmp.c +++ b/common/cmd_bmp.c @@ -121,9 +121,9 @@ static int do_bmp_display(cmd_tbl_t * cmdtp, int flag, int argc, char * const ar  		break;  	case 4:  		addr = simple_strtoul(argv[1], NULL, 16); -	        x = simple_strtoul(argv[2], NULL, 10); -	        y = simple_strtoul(argv[3], NULL, 10); -	        break; +		x = simple_strtoul(argv[2], NULL, 10); +		y = simple_strtoul(argv[3], NULL, 10); +		break;  	default:  		return CMD_RET_USAGE;  	} diff --git a/common/main.c b/common/main.c index ae37fee46..6f475f0cc 100644 --- a/common/main.c +++ b/common/main.c @@ -365,7 +365,7 @@ static void process_boot_delay(void)  #ifdef CONFIG_BOOTCOUNT_LIMIT  	if (bootlimit && (bootcount > bootlimit)) {  		printf ("Warning: Bootlimit (%u) exceeded. Using altbootcmd.\n", -		        (unsigned)bootlimit); +			(unsigned)bootlimit);  		s = getenv ("altbootcmd");  	}  	else |