tools: mkimage: use /* fallthrough */ as needed
GCC recognizes /* fallthrough */ if -Wimplicit-fallthrough=3 is enabled. Let's use it consistently. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
parent
542809620e
commit
a29162a11c
|
|
@ -211,7 +211,7 @@ static void process_args(int argc, char **argv)
|
||||||
case 'f':
|
case 'f':
|
||||||
datafile = optarg;
|
datafile = optarg;
|
||||||
params.auto_its = !strcmp(datafile, "auto");
|
params.auto_its = !strcmp(datafile, "auto");
|
||||||
/* no break */
|
/* fallthrough */
|
||||||
case 'F':
|
case 'F':
|
||||||
/*
|
/*
|
||||||
* The flattened image tree (FIT) format
|
* The flattened image tree (FIT) format
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue