mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Fix indentation of generated code, by letting Output method do its indenting job
svn path=/trunk/; revision=17849
This commit is contained in:
parent
02eed3311f
commit
5b76e2c8f8
1 changed files with 6 additions and 7 deletions
|
@ -943,13 +943,12 @@ CreateTable(FILE *Out, unsigned Bpp)
|
||||||
Output(Out, "{\n");
|
Output(Out, "{\n");
|
||||||
for (RopCode = 0; RopCode < 256; RopCode++)
|
for (RopCode = 0; RopCode < 256; RopCode++)
|
||||||
{
|
{
|
||||||
Output(Out, " ");
|
|
||||||
PrintRoutineName(Out, Bpp, FindRopInfo(RopCode));
|
PrintRoutineName(Out, Bpp, FindRopInfo(RopCode));
|
||||||
if (RopCode < 255)
|
if (RopCode < 255)
|
||||||
{
|
{
|
||||||
putc(',', Out);
|
Output(Out, ",");
|
||||||
}
|
}
|
||||||
putc('\n', Out);
|
Output(Out, "\n");
|
||||||
}
|
}
|
||||||
Output(Out, "};\n");
|
Output(Out, "};\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue