diff options
-rwxr-xr-x | bin/drakguard | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/drakguard b/bin/drakguard index ee35cd8..8908865 100755 --- a/bin/drakguard +++ b/bin/drakguard @@ -674,7 +674,7 @@ sub apply_block_program() { #code to make diff bettween vectors my (@intersection, @difference); @intersection = @difference = (); - my %count = (); + my %count; foreach my $element (@original_list, @actual_list) { $count{$element}++ } foreach my $element (keys %count) { push @{ $count{$element} > 1 ? \@intersection : \@difference }, $element; |