mirror of
https://github.com/ipxe/ipxe
synced 2026-01-10 23:48:36 +03:00
[build] Avoid implicit-fallthrough warnings on GCC 7
Reported-by: Vinson Lee <vlee@freedesktop.org> Reported-by: Liang Yan <lyan@suse.com> Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
@@ -282,9 +282,11 @@ static int bzimage_parse_cmdline ( struct image *image,
|
||||
case 'G':
|
||||
case 'g':
|
||||
bzimg->mem_limit <<= 10;
|
||||
/* Fall through */
|
||||
case 'M':
|
||||
case 'm':
|
||||
bzimg->mem_limit <<= 10;
|
||||
/* Fall through */
|
||||
case 'K':
|
||||
case 'k':
|
||||
bzimg->mem_limit <<= 10;
|
||||
|
||||
Reference in New Issue
Block a user