From aca9da26c720d23421abbbeaf29ba8263cf9cef8 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 19 Dec 2005 23:13:12 +0000 Subject: r12378: fix perl warnings metze (This used to be commit 918e7b4043f6c92997e66d552f62bf1bef81fb81) --- source4/heimdal_build/asn1_deps.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source4/heimdal_build/asn1_deps.pl b/source4/heimdal_build/asn1_deps.pl index cc95fb2217..67e6d51f85 100755 --- a/source4/heimdal_build/asn1_deps.pl +++ b/source4/heimdal_build/asn1_deps.pl @@ -8,8 +8,10 @@ use File::Basename; 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); -- cgit