widl: Fix unterminated comment in generated code.

This commit is contained in:
Dan Hipschman 2006-07-13 18:10:12 -07:00 committed by Alexandre Julliard
parent 436d700c2e
commit d68ec1d325
1 changed files with 1 additions and 1 deletions

View File

@ -1016,5 +1016,5 @@ void write_coclass_forward(class_t *cocl)
fprintf(header, "#ifndef __%s_FWD_DEFINED__\n", cocl->name);
fprintf(header, "#define __%s_FWD_DEFINED__\n", cocl->name);
fprintf(header, "typedef struct %s %s;\n", cocl->name, cocl->name);
fprintf(header, "#endif /* defined __%s_FWD_DEFINED__\n\n", cocl->name );
fprintf(header, "#endif /* defined __%s_FWD_DEFINED__ */\n\n", cocl->name );
}