diff options
author | Rob Clark | 2017-09-13 18:05:39 -0400 |
---|---|---|
committer | Alexander Graf | 2017-09-20 11:08:58 +0200 |
commit | 61b7e22479880f57140dd74879996c83577aa63d (patch) | |
tree | 656a11270343eb0bb53ecaf9108076df4f5e8ab2 /include/efi_api.h | |
parent | 9975fe96b697b6d64bde3f77cd08612fec812b47 (diff) |
efi_loader: file_path should be variable length
Signed-off-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/efi_api.h')
-rw-r--r-- | include/efi_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index d0aefa8221e..604c5b7ec4e 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -373,7 +373,7 @@ struct efi_device_path_cdrom_path { struct efi_device_path_file_path { struct efi_device_path dp; - u16 str[32]; + u16 str[]; } __packed; #define BLOCK_IO_GUID \ |