libpayload: Fix clang fallthrough warning

Clang does not recognize comments to indicate falltrough is intended
behavior.

Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Change-Id: Idcf7a24fc763b80863902702172b4ea950e132b8
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77431
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
This commit is contained in:
Arthur Heymans
2023-08-25 13:05:19 +02:00
committed by Elyes Haouas
parent d717394384
commit 0ba81d7db3
4 changed files with 7 additions and 5 deletions

View File

@ -584,7 +584,7 @@ static int printf_core(const char *fmt, struct printf_spec *ps, va_list ap)
/* Integer values */
case 'P': /* pointer */
flags |= __PRINTF_FLAG_BIGCHARS;
/* fall through */
__fallthrough;
case 'p':
flags |= __PRINTF_FLAG_PREFIX;
base = 16;
@ -604,7 +604,7 @@ static int printf_core(const char *fmt, struct printf_spec *ps, va_list ap)
break;
case 'X':
flags |= __PRINTF_FLAG_BIGCHARS;
/* fall through */
__fallthrough;
case 'x':
base = 16;
break;