Commit 75731b3e authored by reimar's avatar reimar

Do not use puts, it adds additional newlines making the generated files

needlessly ugly.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22623 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent e35060f6
...@@ -43,10 +43,9 @@ int main(int argc, char *argv[]) ...@@ -43,10 +43,9 @@ int main(int argc, char *argv[])
tableinit(); tableinit();
for (i = 0; tables[i].declaration; i++) { for (i = 0; tables[i].declaration; i++) {
puts(tables[i].declaration); printf("%s = {\n", tables[i].declaration);
puts(" = {\n");
tables[i].printfunc(tables[i].data, tables[i].size, tables[i].size2); tables[i].printfunc(tables[i].data, tables[i].size, tables[i].size2);
puts("};\n"); printf("};\n");
} }
return 0; return 0;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment