summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--MDK/Common/Func.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/MDK/Common/Func.pm b/MDK/Common/Func.pm
index 7ce9d5a..7f1a926 100644
--- a/MDK/Common/Func.pm
+++ b/MDK/Common/Func.pm
@@ -242,7 +242,7 @@ sub each_index(&@) {
my $f = shift;
local $::i = 0;
foreach (@_) {
- &$f->();
+ $f->();
$::i++;
}
}