Commit d68ec1d3 authored by Dan Hipschman's avatar Dan Hipschman Committed by Alexandre Julliard

widl: Fix unterminated comment in generated code.

parent 436d700c
......@@ -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 );
}
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