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/main.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/main.c')
| -rw-r--r-- | common/main.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/main.c b/common/main.c index 79ad2912a..187ef8a3a 100644 --- a/common/main.c +++ b/common/main.c @@ -116,7 +116,7 @@ static __inline__ int abortboot(int bootdelay)  	u_int i;  #  ifdef CONFIG_AUTOBOOT_PROMPT -	printf(CONFIG_AUTOBOOT_PROMPT, bootdelay); +	printf(CONFIG_AUTOBOOT_PROMPT);  #  endif  #  ifdef CONFIG_AUTOBOOT_DELAY_STR @@ -212,7 +212,7 @@ static __inline__ int abortboot(int bootdelay)  	int abort = 0;  #ifdef CONFIG_MENUPROMPT -	printf(CONFIG_MENUPROMPT, bootdelay); +	printf(CONFIG_MENUPROMPT);  #else  	printf("Hit any key to stop autoboot: %2d ", bootdelay);  #endif |