mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-03-14 21:10:27 +01:00
Fix console_buffer size conflict error.
The console_buffer size is declared in common/main.c as -- char console_buffer[CONFIG_SYS_CBSIZE + 1]; so this extern definition is wrong. Signed-off-by: Remy Bohmer <linux@bohmer.net>
This commit is contained in:
parent
38c38c344c
commit
0d7f4abcf6
1 changed files with 1 additions and 1 deletions
|
|
@ -1018,7 +1018,7 @@ static void get_user_input(struct in_str *i)
|
|||
fflush(stdout);
|
||||
i->p = the_command;
|
||||
#else
|
||||
extern char console_buffer[CONFIG_SYS_CBSIZE];
|
||||
extern char console_buffer[];
|
||||
int n;
|
||||
static char the_command[CONFIG_SYS_CBSIZE];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue