From 438339c0f280209aaf307c94a66f7f96a9278ac4 Mon Sep 17 00:00:00 2001 From: Anurag Naik <120748645+AnuRage-git@users.noreply.github.com> Date: Thu, 11 Jan 2024 01:42:19 +0530 Subject: [PATCH] Update csv_dequote.pl bareword filehandles CSVin and CSVout changed --- utils/csv_dequote.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/csv_dequote.pl b/utils/csv_dequote.pl index f04a055fec..35cc7c7270 100755 --- a/utils/csv_dequote.pl +++ b/utils/csv_dequote.pl @@ -46,8 +46,8 @@ my $csv = Text::CSV->new(); -open (CSVin, "<", $infile) or die "$infile: $!"; -open (CSVout, ">", $outfile) or die "$outfile: $!"; +open (my $CSVin, "<", $infile) or die "$infile: $!"; +open (my $CSVout, ">", $outfile) or die "$outfile: $!"; while () {