Author: metze Date: 2005-12-19 23:13:12 +0000 (Mon, 19 Dec 2005) New Revision: 12378
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=12378 Log: fix perl warnings metze Modified: branches/SAMBA_4_0/source/heimdal_build/asn1_deps.pl Changeset: Modified: branches/SAMBA_4_0/source/heimdal_build/asn1_deps.pl =================================================================== --- branches/SAMBA_4_0/source/heimdal_build/asn1_deps.pl 2005-12-19 23:07:31 UTC (rev 12377) +++ branches/SAMBA_4_0/source/heimdal_build/asn1_deps.pl 2005-12-19 23:13:12 UTC (rev 12378) @@ -8,8 +8,10 @@ my $file = shift; my $prefix = shift; my $options = shift; -my $x_file, @x_files; -my $c_file, @c_files; +my $x_file; +my @x_files = (); +my $c_file; +my @c_files = (); if (not defined ($prefix)) { $prefix = "asn1"; } $dirname = dirname($file);
