Re: [Qemu-devel] [PATCH] checkpatch: fix braces {} handling

2011-08-27 Thread Blue Swirl
Thanks, applied. On Fri, Aug 26, 2011 at 1:34 PM, Pavel Borzenkov wrote: > checkpatch.pl doesn't report warning for if/else statements with missing > 'else' braces: > > if (something) { >    foo; > } else >    bar; > > The patch has been tested using the last 100 commits. > > Signed-off-by: Pavel

[Qemu-devel] [PATCH] checkpatch: fix braces {} handling

2011-08-26 Thread Pavel Borzenkov
checkpatch.pl doesn't report warning for if/else statements with missing 'else' braces: if (something) { foo; } else bar; The patch has been tested using the last 100 commits. Signed-off-by: Pavel Borzenkov --- scripts/checkpatch.pl |2 +- 1 files changed, 1 insertions(+), 1 deleti