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:
committed by
Elyes Haouas
parent
d717394384
commit
0ba81d7db3
@ -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;
|
||||
|
Reference in New Issue
Block a user