summaryrefslogtreecommitdiff
path: root/lib/VNDB/DB/ULists.pm
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2016-09-18 16:22:11 +0200
committerYorhel <git@yorhel.nl>2016-09-18 16:29:58 +0200
commit2ab67dd6b64424b7aadf2f4e6eb95b06b66ab385 (patch)
tree3fa0def9bea9198b7eb089202dc4f86897420314 /lib/VNDB/DB/ULists.pm
parent9f7bdb22ec6a68f58fab347c7ab89644c9e9d207 (diff)
Suppress silly Perl 5.22 warnings about extra sprintf args
Diffstat (limited to 'lib/VNDB/DB/ULists.pm')
-rw-r--r--lib/VNDB/DB/ULists.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/VNDB/DB/ULists.pm b/lib/VNDB/DB/ULists.pm
index 23bde7cf..e6a85ba0 100644
--- a/lib/VNDB/DB/ULists.pm
+++ b/lib/VNDB/DB/ULists.pm
@@ -303,6 +303,7 @@ sub dbWishListGet {
push @join, 'JOIN vn v ON v.id = wl.vid';
}
+ no if $] >= 5.022, warnings => 'redundant';
my $order = sprintf {
title => 'v.title %s',
added => 'wl.added %s',