diff options
author | Tim Potter <tpot@samba.org> | 2005-07-04 00:30:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:19:08 -0500 |
commit | f684f1da97be3d42b155eaad67dff245e0e05c81 (patch) | |
tree | 30f9ec633a7980133c12357e202bae89e3471c19 /source4/build/pidl | |
parent | 661a6f7c44fda8f4e151b5f7560a5cf9d613b510 (diff) | |
download | samba-f684f1da97be3d42b155eaad67dff245e0e05c81.tar.gz samba-f684f1da97be3d42b155eaad67dff245e0e05c81.tar.bz2 samba-f684f1da97be3d42b155eaad67dff245e0e05c81.zip |
r8101: Fix some indentation.
(This used to be commit baa8f0836f34c94a2f3d831e315575cfa7ced7c3)
Diffstat (limited to 'source4/build/pidl')
-rw-r--r-- | source4/build/pidl/ejs.pm | 16 |
1 files changed, 8 insertions, 8 deletions
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; } |