summaryrefslogtreecommitdiffstats
path: root/util/mknum.pl
diff options
context:
space:
mode:
Diffstat (limited to 'util/mknum.pl')
-rw-r--r--util/mknum.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/mknum.pl b/util/mknum.pl
index 45f3381c81..19d9d55108 100644
--- a/util/mknum.pl
+++ b/util/mknum.pl
@@ -73,7 +73,7 @@ foreach my $f (($symhacks_file // (), @ARGV)) {
&& defined $symhacks_file
&& $f eq $symhacks_file
&& $_->{value} =~ /^\w(?:\w|\d)*/) {
- $ordinals->add_alias($_->{value}, $_->{name}, @{$_->{conds}});
+ $ordinals->add_alias($f, $_->{value}, $_->{name}, @{$_->{conds}});
} else {
next if $_->{returntype} =~ /\b(?:ossl_)inline/;
my $type = {
@@ -81,7 +81,7 @@ foreach my $f (($symhacks_file // (), @ARGV)) {
V => 'VARIABLE',
} -> {$_->{type}};
if ($type) {
- $ordinals->add($_->{name}, $type, @{$_->{conds}});
+ $ordinals->add($f, $_->{name}, $type, @{$_->{conds}});
}
}
}