diff options
Diffstat (limited to 'source4/build/pidl/header.pm')
-rw-r--r-- | source4/build/pidl/header.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/build/pidl/header.pm b/source4/build/pidl/header.pm index dda7e10425..8e102a0c3c 100644 --- a/source4/build/pidl/header.pm +++ b/source4/build/pidl/header.pm @@ -4,6 +4,7 @@ # released under the GNU GPL package IdlHeader; +use strict; use Data::Dumper; my($res); @@ -208,7 +209,7 @@ sub HeaderInterface($) foreach my $d (@{$data}) { if ($d->{TYPE} eq "FUNCTION") { - $u_name = uc $d->{NAME}; + my $u_name = uc $d->{NAME}; $res .= "#define DCERPC_$u_name $count\n"; $count++; } |