From bcfa685ecc87345845021b4834922797b070b9c7 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 23 Jan 2016 12:35:30 +0100 Subject: [PATCH] Remove extra unused variable in util/dofile.pl Reviewed-by: Rich Salz --- util/dofile.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/dofile.pl b/util/dofile.pl index 74d1520ed0..617c09ce65 100644 --- a/util/dofile.pl +++ b/util/dofile.pl @@ -83,7 +83,7 @@ sub broken { my $prev_linecount = 0; my $text = @ARGV - ? join("", map { my $x = my $y = Text::Template::_load_text($_); + ? join("", map { my $x = Text::Template::_load_text($_); my $linecount = $x =~ tr/\n//; $prev_linecount = ($linecount += $prev_linecount); $lines{$linecount} = $_; -- 2.39.5