[interchange] Fix syntax error on conditional warnings.
Peter Ajamian <[email protected]> Sun, 25 Jun 2017 18:12:26 +0000
| Newsgroups | gmane.comp.web.interchange.cvs |
|---|---|
| Message-ID | <[email protected]> |
commit 8e8e2defa3ea205804c540b5c95bc62047aea3be Author: Peter Ajamian <[email protected]> Date: Mon Jun 26 06:11:30 2017 +1200 Fix syntax error on conditional warnings. lib/Vend/Util.pm | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- diff --git a/lib/Vend/Util.pm b/lib/Vend/Util.pm index 7e92206..20c6d3a 100644 --- a/lib/Vend/Util.pm +++ b/lib/Vend/Util.pm @@ -93,7 +93,7 @@ else { use strict; no warnings qw(uninitialized numeric); -no warnings qw(redundant) if $^V ge v5.22.0; +no if $^V ge v5.22.0, warnings => qw(redundant); use Config; use Fcntl; use Errno;