summaryrefslogtreecommitdiffstats
path: root/crypto/objects
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2012-06-06 12:41:46 +0000
committerBen Laurie <ben@openssl.org>2012-06-06 12:41:46 +0000
commitff46820da676c7971e82025b6b0038e1082bc1fe (patch)
tree1be96f9492682cdd8c8293f4f7ce6f7c3aa9c42f /crypto/objects
parent6fba65e20ddac1545e7fc45ab2fe3495b99d3ab8 (diff)
Version skew reduction.
Diffstat (limited to 'crypto/objects')
-rw-r--r--crypto/objects/objxref.pl3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/objects/objxref.pl b/crypto/objects/objxref.pl
index 94b9bc133f..731d3ae22c 100644
--- a/crypto/objects/objxref.pl
+++ b/crypto/objects/objxref.pl
@@ -39,8 +39,7 @@ my @xrkeys = keys %xref_tbl;
my @srt1 = sort { $oid_tbl{$a} <=> $oid_tbl{$b}} @xrkeys;
-my $i;
-for($i = 0; $i <= $#srt1; $i++)
+for(my $i = 0; $i <= $#srt1; $i++)
{
$xref_tbl{$srt1[$i]}[2] = $i;
}