diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-07-30 13:06:10 +0200 |
---|---|---|
committer | Jakub Czapiga <jacz@semihalf.com> | 2023-08-01 12:51:25 +0000 |
commit | fc2f304f062bc51cf51ad999caf13a6acc64a1b3 (patch) | |
tree | 4b4da22e0b78bdff9221b3814bc300b3f0fead40 /util/cbmem | |
parent | dc15867e3b938b6349fed3e809931657bdd24da6 (diff) |
util: 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: I6b87680ec9f501945ae266ae4e4927efd2399d56
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/76815
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/cbmem')
-rw-r--r-- | util/cbmem/cbmem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/cbmem/cbmem.c b/util/cbmem/cbmem.c index 73c410cbb7..d33b714d22 100644 --- a/util/cbmem/cbmem.c +++ b/util/cbmem/cbmem.c @@ -1116,7 +1116,7 @@ static void dump_tpm_log(void) struct cbmem_console { u32 size; u32 cursor; - u8 body[0]; + u8 body[]; } __attribute__ ((__packed__)); #define CBMC_CURSOR_MASK ((1 << 28) - 1) |