util/mkerr.pl: fix perl warning
authorGeoff Thorpe <geoff@openssl.org>
Fri, 25 Apr 2014 05:20:16 +0000 (01:20 -0400)
committerGeoff Thorpe <geoff@openssl.org>
Fri, 25 Apr 2014 18:31:05 +0000 (14:31 -0400)
Gets rid of this;

defined(@array) is deprecated at ../util/mkerr.pl line 792.
        (Maybe you should just omit the defined()?)
defined(@array) is deprecated at ../util/mkerr.pl line 800.
        (Maybe you should just omit the defined()?)

Signed-off-by: Geoff Thorpe <geoff@openssl.org>
util/mkerr.pl

index 49a52a7f33082298fac87935fa72639eb795fdf7..9a3b634d57395279f53855bebb5341d1d7cdf2f3 100644 (file)
@@ -789,7 +789,7 @@ foreach (keys %rcodes) {
        push (@runref, $_) unless exists $urcodes{$_};
 }
 
-if($debug && defined(@funref) ) {
+if($debug && @funref) {
        print STDERR "The following function codes were not referenced:\n";
        foreach(sort @funref)
        {
@@ -797,7 +797,7 @@ if($debug && defined(@funref) ) {
        }
 }
 
-if($debug && defined(@runref) ) {
+if($debug && @runref) {
        print STDERR "The following reason codes were not referenced:\n";
        foreach(sort @runref)
        {