Commit 5a378905 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

widl: Add a newline between function prototypes for non-object interfaces.

parent 35ba23bd
......@@ -871,7 +871,7 @@ static void write_function_proto(const type_t *iface, const func_t *fun, const c
write_args(header, fun->args, iface->name, 0, TRUE);
else
fprintf(header, " void");
fprintf(header, ");\n");
fprintf(header, ");\n\n");
}
static void write_function_protos(const type_t *iface)
......
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