diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-07-30 13:15:18 +0200 |
---|---|---|
committer | Jakub Czapiga <jacz@semihalf.com> | 2023-08-01 12:42:10 +0000 |
commit | dc15867e3b938b6349fed3e809931657bdd24da6 (patch) | |
tree | 0d1165f5a528f02a2fa7cad87b959038d80b8bed /src | |
parent | 928584c31d68a59b0ec58b2a4db9d23a43bf4e01 (diff) |
src/drivers/vpd/vpd.c: Use C99 flexible arrays
Use C99 flexible arrays instead of older style of one-element or
zero-length arrays.
It allows the compiler to generate errors when the flexible array does
not occur at the end in the structure.
Change-Id: Iab55c57ee5cac60911c9fe4cee8d86a252bde372
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76839
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/drivers/vpd/vpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/vpd/vpd.c b/src/drivers/vpd/vpd.c index 4bd5f60c70..31464157fc 100644 --- a/src/drivers/vpd/vpd.c +++ b/src/drivers/vpd/vpd.c @@ -25,7 +25,7 @@ struct vpd_cbmem { uint32_t version; uint32_t ro_size; uint32_t rw_size; - uint8_t blob[0]; + uint8_t blob[]; /* The blob contains both RO and RW data. It starts with RO (0 .. * ro_size) and then RW (ro_size .. ro_size+rw_size). */ |