diff --git a/oscar64/Compiler.cpp b/oscar64/Compiler.cpp index 575fff5..1bc39bd 100644 --- a/oscar64/Compiler.cpp +++ b/oscar64/Compiler.cpp @@ -1169,7 +1169,7 @@ bool Compiler::WriteDbjFile(const char* filename) break; case DT_TYPE_STRUCT: { - fprintf(file, "\t\t{\"name\": \"%s\", \"typeid\": %d, \"size\": %d, \"type\": \"struct\",\" members\": [\n", dec->mIdent ? dec->mIdent->mString : "", i, dec->mSize); + fprintf(file, "\t\t{\"name\": \"%s\", \"typeid\": %d, \"size\": %d, \"type\": \"struct\",\"members\": [\n", dec->mIdent ? dec->mIdent->mString : "", i, dec->mSize); bool tfirst = true; Declaration* mdec = dec->mParams; while (mdec)