Skip to content

Commit

Permalink
Fix syntax error on conditional warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
pajamian committed Jun 25, 2017
1 parent 538b627 commit 8e8e2de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Vend/Util.pm
Expand Up @@ -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;
Expand Down

0 comments on commit 8e8e2de

Please sign in to comment.