minor whitespace fix

This commit is contained in:
Robert Burnett 2026-06-28 14:42:07 -05:00
parent f73d13c410
commit 765c95c3ae

View File

@ -2041,14 +2041,14 @@ static void ExportParsedData(const char *fileName, int format)
for (int i = 0; i < structCount; i++) for (int i = 0; i < structCount; i++)
{ {
if(i != 0) fprintf(outFile, "\n\n"); if(i != 0) fprintf(outFile, "\n\n");
fprintf(outFile, " ((name \"%s\")\n", structs[i].name); fprintf(outFile, " ((name \"%s\")\n", structs[i].name);
fprintf(outFile, " (description \"%s\")\n", EscapeBackslashes(structs[i].desc)); fprintf(outFile, " (description \"%s\")\n", EscapeBackslashes(structs[i].desc));
fprintf(outFile, " (fields "); fprintf(outFile, " (fields ");
for (int f = 0; f < structs[i].fieldCount; f++) for (int f = 0; f < structs[i].fieldCount; f++)
{ {
fprintf(outFile, "\n ((type \"%s\")\n", structs[i].fieldType[f]); fprintf(outFile, "\n ((type \"%s\")\n", structs[i].fieldType[f]);
fprintf(outFile, " (name \"%s\")\n", structs[i].fieldName[f]); fprintf(outFile, " (name \"%s\")\n", structs[i].fieldName[f]);
fprintf(outFile, " (description \"%s\"))", EscapeBackslashes(structs[i].fieldDesc[f])); fprintf(outFile, " (description \"%s\"))", EscapeBackslashes(structs[i].fieldDesc[f]));
} }
fprintf(outFile, "))"); fprintf(outFile, "))");
} }