util/mknum.pl: output stats on unassigned symbols

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/10348)
This commit is contained in:
Richard Levitte 2019-11-04 10:36:54 +01:00
parent 8635730333
commit b6fc6620cf

View File

@ -128,5 +128,9 @@ if ($checkexist) {
} else {
print STDERR "${ordinals_file}: No new symbols added\n";
}
if ($stats{unassigned}) {
my $symbol = $stats{unassigned} == 1 ? "symbol" : "symbols";
my $is = $stats{unassigned} == 1 ? "is" : "are";
print STDERR "${ordinals_file}: $stats{unassigned} $symbol $is without ordinal number\n";
}
}