From 5a378905bedb264ad1667d1ecbb0067b065bddbb Mon Sep 17 00:00:00 2001 From: Rob Shearman Date: Wed, 2 Apr 2008 12:56:27 +0100 Subject: [PATCH] widl: Add a newline between function prototypes for non-object interfaces. --- tools/widl/header.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/widl/header.c b/tools/widl/header.c index d2f7ae4b92..9fe5082d72 100644 --- a/tools/widl/header.c +++ b/tools/widl/header.c @@ -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)