Subject: | Uninitialized value warning |
Upon "use again ...", the following message is printed:
Use of uninitialized value in numeric lt (<) at /Library/Perl/5.18/again.pm line 16.
The fix appears to be easy -- line 16:
if (not exists $INC{$file} or -M $INC{$file} < $mtimes{$INC{$file}}) {
to:
if (not exists $INC{$file} or ($mtimes{$INC{$file}} && -M $INC{$file} < $mtimes{$INC{$file}})) {