From: Richard Levitte Date: Sat, 23 Jan 2016 11:35:30 +0000 (+0100) Subject: Remove extra unused variable in util/dofile.pl X-Git-Tag: OpenSSL_1_1_0-pre3~440 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=bcfa685ecc87345845021b4834922797b070b9c7;p=thirdparty%2Fopenssl.git Remove extra unused variable in util/dofile.pl Reviewed-by: Rich Salz --- diff --git a/util/dofile.pl b/util/dofile.pl index 74d1520ed0f..617c09ce656 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} = $_;