diff options
| author | Stefan Roese <sr@denx.de> | 2008-08-06 14:05:38 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2008-08-06 14:05:38 +0200 | 
| commit | f2302d4430e7f3f48308d6a585320fe96af8afbd (patch) | |
| tree | eec529fa883a32b0bd44f65aa46a454dc5c69688 /common/cmd_flash.c | |
| parent | 9246f5ecfd353ae297a02ffd5328402acf16c9dd (diff) | |
| download | olio-uboot-2014.01-f2302d4430e7f3f48308d6a585320fe96af8afbd.tar.xz olio-uboot-2014.01-f2302d4430e7f3f48308d6a585320fe96af8afbd.zip | |
Fix merge problems
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'common/cmd_flash.c')
| -rw-r--r-- | common/cmd_flash.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_flash.c b/common/cmd_flash.c index a7f66ddbf..18d2250f3 100644 --- a/common/cmd_flash.c +++ b/common/cmd_flash.c @@ -342,7 +342,7 @@ int do_flerase (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  			puts ("Bad sector specification\n");  			return 1;  		} -		printf ("Erase Flash Sectors %d-%d in Bank # %d ", +		printf ("Erase Flash Sectors %d-%d in Bank # %zu ",  			sect_first, sect_last, (info-flash_info)+1);  		rcode = flash_erase(info, sect_first, sect_last);  		return rcode; @@ -534,7 +534,7 @@ int do_protect (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  			puts ("Bad sector specification\n");  			return 1;  		} -		printf("%sProtect Flash Sectors %d-%d in Bank # %d\n", +		printf("%sProtect Flash Sectors %d-%d in Bank # %zu\n",  			p ? "" : "Un-", sect_first, sect_last,  			(info-flash_info)+1);  		for (i = sect_first; i <= sect_last; i++) { |