From f684f1da97be3d42b155eaad67dff245e0e05c81 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 4 Jul 2005 00:30:06 +0000 Subject: r8101: Fix some indentation. (This used to be commit baa8f0836f34c94a2f3d831e315575cfa7ced7c3) --- source4/build/pidl/ejs.pm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'source4') diff --git a/source4/build/pidl/ejs.pm b/source4/build/pidl/ejs.pm index 4a106f6176..57ede8de64 100644 --- a/source4/build/pidl/ejs.pm +++ b/source4/build/pidl/ejs.pm @@ -51,10 +51,10 @@ sub EJSInterface($) sub Parse($$) { my($ndr,$hdr) = @_; - my @fns = (); + my @fns = (); - $res = ""; - pidl "#include \"$hdr\"\n\n"; + $res = ""; + pidl "#include \"$hdr\"\n\n"; pidl "/* EJS wrapper functions auto-generated by pidl */\n\n"; foreach my $x (@{$ndr}) { if ($x->{TYPE} eq "INTERFACE") { @@ -62,12 +62,12 @@ sub Parse($$) } } - pidl "void setup_ejs_functions(void)\n"; - pidl "{\n"; - foreach (@fns) { + pidl "void setup_ejs_functions(void)\n"; + pidl "{\n"; + foreach (@fns) { pidl "\tespDefineCFunction(NULL, \"$_\", esp_$_, NULL);\n"; - } - pidl "}\n"; + } + pidl "}\n"; return $res; } -- cgit