mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
contrib: Open brace '{' following struct go on the same line
I found some style problems whil check the code using checkpatch.pl. This commit fixs the issue below: ERROR: that open brace { should be on the previous line Signed-off-by: zhouyang <zhouyang789@huawei.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20210118031004.1662363-6-zhouyang789@huawei.com> Message-Id: <20210213130325.14781-9-alex.bennee@linaro.org>
This commit is contained in:
parent
edd4a85dd7
commit
24fa5d669d
1 changed files with 1 additions and 2 deletions
|
@ -145,8 +145,7 @@ typedef struct {
|
|||
int table_sz;
|
||||
} ClassSelector;
|
||||
|
||||
static ClassSelector class_tables[] =
|
||||
{
|
||||
static ClassSelector class_tables[] = {
|
||||
{ "aarch64", aarch64_insn_classes, ARRAY_SIZE(aarch64_insn_classes) },
|
||||
{ "sparc", sparc32_insn_classes, ARRAY_SIZE(sparc32_insn_classes) },
|
||||
{ "sparc64", sparc64_insn_classes, ARRAY_SIZE(sparc64_insn_classes) },
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue