Re: [PATCH 030/141] ext2: Fix fall-through warnings for Clang

2020-11-23 Thread Gustavo A. R. Silva
On Mon, Nov 23, 2020 at 10:37:09AM +0100, Jan Kara wrote: > On Fri 20-11-20 12:28:25, Gustavo A. R. Silva wrote: > > In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning > > by explicitly adding a break statement instead of just letting the code > > fall through to the next case

Re: [PATCH 030/141] ext2: Fix fall-through warnings for Clang

2020-11-23 Thread Jan Kara
On Fri 20-11-20 12:28:25, Gustavo A. R. Silva wrote: > In preparation to enable -Wimplicit-fallthrough for Clang, fix a warning > by explicitly adding a break statement instead of just letting the code > fall through to the next case. > > Link: https://github.com/KSPP/linux/issues/115 > Signed-off