mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 13:56:20 +00:00
efi_selftest: missing braces in efi_selftest_textinputex.c
gcc 4.8.4 wants to see all levels of braces when initializing a structure to zeros. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> Signed-off-by: Alexander Graf <agraf@suse.de>
This commit is contained in:
parent
d3dce35aab
commit
e102038641
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ static int teardown(void)
|
|||
*/
|
||||
static int execute(void)
|
||||
{
|
||||
struct efi_key_data input_key = {0,};
|
||||
struct efi_key_data input_key = { {0, 0}, {0, 0} };
|
||||
efi_status_t ret;
|
||||
efi_uintn_t index;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue