Remove prototype causing warnings
Chris Nehren [Tue, 12 Feb 2013 17:01:14 +0000 (12:01 -0500)]
... also it's a prototype.

lib/local/lib.pm

index 996cd6b..62ed1cf 100644 (file)
@@ -375,7 +375,7 @@ my %ENV_LIST_VALUE_DEFAULTS = (
     filter => sub { 1 },
     empty => undef,
 );
-sub _env_list_value(%@) {
+sub _env_list_value {
   my $options = shift;
   die(sprintf "unknown option '$_' at %s line %u\n", (caller)[1..2])
     for grep { !exists $ENV_LIST_VALUE_DEFAULTS{$_} } keys %$options;