summaryrefslogtreecommitdiff
path: root/tokhash.pl
diff options
context:
space:
mode:
authorVictor van den Elzen <victor.vde@gmail.com>2010-11-07 17:20:23 +0100
committerVictor van den Elzen <victor.vde@gmail.com>2010-11-07 17:20:23 +0100
commitbc8522e3a08ae3124bdf60d27dd0a24baee535f0 (patch)
tree7b309d6c2c5c14f26dbe476e676aa4b9a344b28d /tokhash.pl
parentaf43b9751494b45f6aca068694db032749db0709 (diff)
downloadnasm-bc8522e3a08ae3124bdf60d27dd0a24baee535f0.tar.gz
nasm-bc8522e3a08ae3124bdf60d27dd0a24baee535f0.tar.bz2
nasm-bc8522e3a08ae3124bdf60d27dd0a24baee535f0.zip
Fix Perl deprecation warnings.
Use of defined on aggregates (hashes and arrays) is deprecated. You should instead use a simple test for size.
Diffstat (limited to 'tokhash.pl')
-rwxr-xr-xtokhash.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tokhash.pl b/tokhash.pl
index 0c69c03..6c05802 100755
--- a/tokhash.pl
+++ b/tokhash.pl
@@ -183,7 +183,7 @@ if ($output eq 'h') {
#
@hashinfo = gen_perfect_hash(\%tokens);
- if (!defined(@hashinfo)) {
+ if (!@hashinfo) {
die "$0: no hash found\n";
}